Uses of Class
picocli.CommandLine.ScopeType
-
Packages that use CommandLine.ScopeType Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality. -
-
Uses of CommandLine.ScopeType in picocli
Fields in picocli declared as CommandLine.ScopeType Modifier and Type Field Description private CommandLine.ScopeType
CommandLine.Model.ArgSpec.Builder. scopeType
private CommandLine.ScopeType
CommandLine.Model.ArgSpec. scopeType
private CommandLine.ScopeType
CommandLine.Model.CommandSpec. scopeType
Methods in picocli that return CommandLine.ScopeType Modifier and Type Method Description CommandLine.ScopeType
scope()
Returns whether subcommands inherit their attributes from this parent command.CommandLine.ScopeType
scope()
Determines on which command(s) this option exists: on this command only (the default), or whether this is a "global" option that is applied to this command and all subcommands, sub-subcommands, etc.CommandLine.ScopeType
scope()
Determines on which command(s) this positional parameter exists: on this command only (the default), or whether this is a "global" parameter that is applied to this command and all subcommands, sub-subcommands, etc.CommandLine.ScopeType
CommandLine.Model.ArgSpec.Builder. scopeType()
Returns the scope of this argument.CommandLine.ScopeType
CommandLine.Model.ArgSpec. scopeType()
Returns the scope of this argument; it it local, or inherited (it applies to this command as well as all sub- and sub-subcommands).CommandLine.ScopeType
CommandLine.Model.CommandSpec. scopeType()
Returns the scope of this argument; it it local, or inherited (it applies to this command as well as all sub- and sub-subcommands).static CommandLine.ScopeType
CommandLine.ScopeType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CommandLine.ScopeType[]
CommandLine.ScopeType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in picocli with parameters of type CommandLine.ScopeType Modifier and Type Method Description T
CommandLine.Model.ArgSpec.Builder. scopeType(CommandLine.ScopeType scopeType)
Sets the scope of where this argument applies: only this command, or also all sub (and sub-sub) commands, and returns this builder.CommandLine.Model.CommandSpec
CommandLine.Model.CommandSpec. scopeType(CommandLine.ScopeType scopeType)
Sets the scope of where this argument applies: only this command, or also all sub (and sub-sub) commands, and returns this builder.(package private) void
CommandLine.Model.CommandSpec. updateScopeType(CommandLine.ScopeType scopeType)
-