Class ArgumentAcceptingOptionSpec<V>
- Type Parameters:
V- represents the type of the arguments this option accepts
- All Implemented Interfaces:
OptionDescriptor, OptionSpec<V>
- Direct Known Subclasses:
AlternativeLongOptionSpec, OptionalArgumentOptionSpec, RequiredArgumentOptionSpec
Specification of an option that accepts an argument.
Instances are returned from OptionSpecBuilder methods to allow the formation of parser directives as
sentences in a "fluent interface" language. For example:
OptionParser parser = new OptionParser();
parser.accepts( "c" ).withRequiredArg().ofType( Integer.class );
If no methods are invoked on an instance of this class, then that instance's option will treat its argument as
a String.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Stringprivate final booleanprivate ValueConverter<V> private static final charprivate booleanprivate String -
Constructor Summary
ConstructorsConstructorDescriptionArgumentAcceptingOptionSpec(String option, boolean argumentRequired) ArgumentAcceptingOptionSpec(List<String> options, boolean argumentRequired, String description) -
Method Summary
Modifier and TypeMethodDescriptionbooleanDoes this option accept arguments?protected voidaddArguments(OptionSet detectedOptions, String detectedArgument) private voidaddDefaultValue(V value) Gives a short description of the option's argument.Gives an indication of the expected type of the option's argument.protected booleancanConvertArgument(String argument) protected final VdefaultsTo(V[] values) Specifies a set of default values for the argument of the option that this spec represents.final ArgumentAcceptingOptionSpec<V> defaultsTo(V value, V... values) Specifies a set of default values for the argument of the option that this spec represents.What values will the option take if none are specified on the command line?final ArgumentAcceptingOptionSpec<V> describedAs(String description) Specifies a description for the argument of the option that this spec represents.protected abstract voiddetectOptionArgument(OptionParser parser, ArgumentList arguments, OptionSet detectedOptions) boolean(package private) final voidhandleOption(OptionParser parser, ArgumentList arguments, OptionSet detectedOptions, String detectedArgument) inthashCode()protected booleanbooleanIs this option required on a command line?final <T> ArgumentAcceptingOptionSpec<T> Specifies a type to which arguments of this spec's option are to be converted.required()Marks this option as required.booleanDoes this option require an argument?final <T> ArgumentAcceptingOptionSpec<T> withValuesConvertedBy(ValueConverter<T> aConverter) Specifies a converter to use to translate arguments of this spec's option into Java objects.final ArgumentAcceptingOptionSpec<V> withValuesSeparatedBy(char separator) Specifies a value separator for the argument of the option that this spec represents.final ArgumentAcceptingOptionSpec<V> withValuesSeparatedBy(String separator) Specifies a value separator for the argument of the option that this spec represents.Methods inherited from class AbstractOptionSpec
argumentTypeIndicatorFrom, convertWith, description, forHelp, isForHelp, options, representsNonOptions, toString, value, values
-
Field Details
-
NIL_VALUE_SEPARATOR
private static final char NIL_VALUE_SEPARATOR- See Also:
-
argumentRequired
private final boolean argumentRequired -
defaultValues
-
optionRequired
private boolean optionRequired -
converter
-
argumentDescription
-
valueSeparator
-
-
Constructor Details
-
ArgumentAcceptingOptionSpec
ArgumentAcceptingOptionSpec(String option, boolean argumentRequired) -
ArgumentAcceptingOptionSpec
-
-
Method Details
-
ofType
Specifies a type to which arguments of this spec's option are to be converted.
JOpt Simple accepts types that have either:
- a public static method called
valueOfwhich accepts a single argument of typeStringand whose return type is the same as the class on which the method is declared. Thejava.langprimitive wrapper classes have such methods. - a public constructor which accepts a single argument of type
String.
This class converts arguments using those methods in that order; that is,
valueOfwould be invoked before a one-String-arg constructor would.Invoking this method will trump any previous calls to this method or to
withValuesConvertedBy(ValueConverter).- Type Parameters:
T- represents the runtime class of the desired option argument type- Parameters:
argumentType- desired type of arguments to this spec's option- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
- Throws:
NullPointerException- if the type isnullIllegalArgumentException- if the type does not have the standard conversion methods
- a public static method called
-
withValuesConvertedBy
Specifies a converter to use to translate arguments of this spec's option into Java objects. This is useful when converting to types that do not have the requisite factory method or constructor for
ofType(Class).Invoking this method will trump any previous calls to this method or to
ofType(Class).- Type Parameters:
T- represents the runtime class of the desired option argument type- Parameters:
aConverter- the converter to use- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
- Throws:
NullPointerException- if the converter isnull
-
describedAs
Specifies a description for the argument of the option that this spec represents. This description is used when generating help information about the parser.
- Parameters:
description- describes the nature of the argument of this spec's option- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
-
withValuesSeparatedBy
Specifies a value separator for the argument of the option that this spec represents. This allows a single option argument to represent multiple values for the option. For example:
parser.accepts( "z" ).withRequiredArg() .withValuesSeparatedBy( ',' ); OptionSet options = parser.parse( new String[] { "-z", "foo,bar,baz", "-z", "fizz", "-z", "buzz" } );Then
options.valuesOf( "z" )would yield the list[foo, bar, baz, fizz, buzz].You cannot use Unicode U+0000 as the separator.
- Parameters:
separator- a character separator- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
- Throws:
IllegalArgumentException- if the separator is Unicode U+0000
-
withValuesSeparatedBy
Specifies a value separator for the argument of the option that this spec represents. This allows a single option argument to represent multiple values for the option. For example:
parser.accepts( "z" ).withRequiredArg() .withValuesSeparatedBy( ":::" ); OptionSet options = parser.parse( new String[] { "-z", "foo:::bar:::baz", "-z", "fizz", "-z", "buzz" } );Then
options.valuesOf( "z" )would yield the list[foo, bar, baz, fizz, buzz].You cannot use Unicode U+0000 in the separator.
- Parameters:
separator- a string separator- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
- Throws:
IllegalArgumentException- if the separator contains Unicode U+0000
-
defaultsTo
Specifies a set of default values for the argument of the option that this spec represents.- Parameters:
value- the first in the set of default argument values for this spec's optionvalues- the (optional) remainder of the set of default argument values for this spec's option- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
- Throws:
NullPointerException- ifvalue,values, or any elements ofvaluesarenull
-
defaultsTo
Specifies a set of default values for the argument of the option that this spec represents.- Parameters:
values- the set of default argument values for this spec's option- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
- Throws:
NullPointerException- ifvaluesor any elements ofvaluesarenull
-
required
Marks this option as required. AnOptionExceptionwill be thrown whenOptionParser.parse(java.lang.String...)is called, if an option is marked as required and not specified on the command line.- Returns:
- self, so that the caller can add clauses to the fluent interface sentence
-
isRequired
public boolean isRequired()Description copied from interface:OptionDescriptorIs this option required on a command line?- Returns:
- whether the option is required
-
addDefaultValue
-
handleOption
final void handleOption(OptionParser parser, ArgumentList arguments, OptionSet detectedOptions, String detectedArgument) - Specified by:
handleOptionin classAbstractOptionSpec<V>
-
addArguments
-
detectOptionArgument
protected abstract void detectOptionArgument(OptionParser parser, ArgumentList arguments, OptionSet detectedOptions) -
convert
- Specified by:
convertin classAbstractOptionSpec<V>
-
canConvertArgument
-
isArgumentOfNumberType
protected boolean isArgumentOfNumberType() -
acceptsArguments
public boolean acceptsArguments()Description copied from interface:OptionDescriptorDoes this option accept arguments?- Returns:
- whether the option accepts arguments
-
requiresArgument
public boolean requiresArgument()Description copied from interface:OptionDescriptorDoes this option require an argument?- Returns:
- whether the option requires an argument
-
argumentDescription
Description copied from interface:OptionDescriptorGives a short description of the option's argument.- Returns:
- a description for the option's argument
-
argumentTypeIndicator
Description copied from interface:OptionDescriptorGives an indication of the expected type of the option's argument.- Returns:
- a description for the option's argument type
-
defaultValues
Description copied from interface:OptionDescriptorWhat values will the option take if none are specified on the command line?- Returns:
- any default values for the option
-
equals
- Overrides:
equalsin classAbstractOptionSpec<V>
-
hashCode
public int hashCode()- Overrides:
hashCodein classAbstractOptionSpec<V>
-