Class CommandLine.Model.PositionalParamSpec
- Enclosing class:
- CommandLine.Model
PositionalParamSpec
class models aspects of a positional parameter of a command, including whether
it is required or optional, and attributes for the usage help message describing the positional parameter.
Positional parameters have an index
(or a range of indices). A positional parameter is matched when the parser
encounters a command line argument at that index. Named options and their parameters do not change the index counter,
so the command line can contain a mixture of positional parameters and named options.
Depending on the positional parameter's arity
, the parser may consume multiple command line
arguments starting from the current index. The parser will call setValue
on
the PositionalParamSpec
for each of the parameters encountered.
For multi-value positional parameters, the type
may be an array, a Collection
or a Map
. In this case
the parser will get the data structure by calling getValue
and modify the contents of this data structure.
(In the case of arrays, the array is replaced with a new instance with additional elements.)
Before calling the setter, picocli converts the positional parameter value from a String to the parameter's type.
- If a positional parameter-specific
converter
is configured, this will be used for type conversion. If the positional parameter's type is aMap
, the map may have different types for its keys and its values, soconverters
should provide two converters: one for the map keys and one for the map values. - Otherwise, the positional parameter's
type
is used to look up a converter in the list of registered converters. For multi-value positional parameters, thetype
may be an array, or aCollection
or aMap
. In that case the elements are converted based on the positional parameter'sauxiliaryTypes
. The auxiliaryType is used to look up the converter(s) to use to convert the individual parameter values. Maps may have different types for its keys and its values, soauxiliaryTypes
should provide two types: one for the map keys and one for the map values.
PositionalParamSpec
objects are used by the picocli command line interpreter and help message generator.
Picocli can construct a PositionalParamSpec
automatically from fields and methods with @Parameters
annotations. Alternatively a PositionalParamSpec
can be constructed programmatically.
When a PositionalParamSpec
is created from a @Parameters
-annotated field or method,
it is "bound" to that field or method: this field is set (or the method is invoked) when the position is matched
and setValue
is called.
Programmatically constructed PositionalParamSpec
instances will remember the value passed to the
setValue
method so it can be retrieved with the getValue
method.
This behaviour can be customized by installing a custom CommandLine.Model.IGetter
and CommandLine.Model.ISetter
on the PositionalParamSpec
.
- Since:
- 3.0
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Builder responsible for creating validPositionalParamSpec
objects. -
Field Summary
Fields inherited from class nz.org.riskscape.picocli.CommandLine.Model.ArgSpec
toString
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder
(CommandLine.Model.IAnnotatedElement source, CommandLine.IFactory factory) builder
(CommandLine.Model.PositionalParamSpec original) Returns a Builder initialized from the specifiedPositionalSpec
.boolean
protected Collection<String>
Returns the additional lookup keys for finding description lines in the resource bundle for this positional parameter.int
hashCode()
index()
Returns an index or range specifying which of the command line arguments should be assigned to this positional parameter.boolean
isOption()
Returnstrue
if this argument is a named option,false
otherwise.boolean
Returnstrue
if this argument is a positional parameter,false
otherwise.Returns a new Builder initialized with the attributes from thisPositionalParamSpec
.Methods inherited from class nz.org.riskscape.picocli.CommandLine.Model.ArgSpec
arity, auxiliaryTypes, command, completionCandidates, converters, defaultValue, defaultValueString, defaultValueString, description, descriptionKey, equalsImpl, getter, getValue, group, hashCodeImpl, hasInitialValue, hidden, hideParamSyntax, initialValue, interactive, internalShowDefaultValue, isMultiValue, messages, messages, originalStringValues, parameterConsumer, paramLabel, renderedDescription, required, resetOriginalStringValues, resetStringValues, scope, setter, setValue, setValue, showDefaultValue, splitRegex, stringValues, toString, type, typedValues, typeInfo, userObject
-
Method Details
-
builder
-
builder
public static CommandLine.Model.PositionalParamSpec.Builder builder(CommandLine.Model.PositionalParamSpec original) Returns a Builder initialized from the specifiedPositionalSpec
.- Since:
- 4.0
-
builder
public static CommandLine.Model.PositionalParamSpec.Builder builder(CommandLine.Model.IAnnotatedElement source, CommandLine.IFactory factory) -
toBuilder
Returns a new Builder initialized with the attributes from thisPositionalParamSpec
. Callingbuild
immediately will return a copy of thisPositionalParamSpec
.- Returns:
- a builder that can create a copy of this spec
-
isOption
public boolean isOption()Description copied from class:CommandLine.Model.ArgSpec
Returnstrue
if this argument is a named option,false
otherwise.- Specified by:
isOption
in classCommandLine.Model.ArgSpec
-
isPositional
public boolean isPositional()Description copied from class:CommandLine.Model.ArgSpec
Returnstrue
if this argument is a positional parameter,false
otherwise.- Specified by:
isPositional
in classCommandLine.Model.ArgSpec
-
getAdditionalDescriptionKeys
Returns the additional lookup keys for finding description lines in the resource bundle for this positional parameter.- Specified by:
getAdditionalDescriptionKeys
in classCommandLine.Model.ArgSpec
- Returns:
- a collection with the following single value:
paramLabel() + "[" + index() + "]"
. - Since:
- 4.0
- See Also:
-
index
Returns an index or range specifying which of the command line arguments should be assigned to this positional parameter.- See Also:
-
hashCode
public int hashCode() -
equals
-