- ofType(Class<T>) - Method in class joptsimple.ArgumentAcceptingOptionSpec
-
Specifies a type to which arguments of this spec's option are to be converted.
- ofType(Class<T>) - Method in class joptsimple.NonOptionArgumentSpec
-
Specifies a type to which the non-option arguments are to be converted.
- OptionDeclarer - Interface in joptsimple
-
Trains the option parser.
- OptionDescriptor - Interface in joptsimple
-
Describes options that an option parser recognizes, in ways that might be useful to
help screens.
- OptionException - Exception in joptsimple
-
Thrown when a problem occurs during option parsing.
- OptionParser - Class in joptsimple
-
Parses command line arguments, using a syntax that attempts to take from the best of POSIX getopt()
and GNU getopt_long()
.
- OptionParser() - Constructor for class joptsimple.OptionParser
-
Creates an option parser that initially recognizes no options, and does not exhibit "POSIX-ly correct"
behavior.
- OptionParser(boolean) - Constructor for class joptsimple.OptionParser
-
Creates an option parser that initially recognizes no options, and does not exhibit "POSIX-ly correct"
behavior.
- OptionParser(String) - Constructor for class joptsimple.OptionParser
-
Creates an option parser and configures it to recognize the short options specified in the given string.
- options() - Method in class joptsimple.AbstractOptionSpec
-
- options() - Method in interface joptsimple.OptionDescriptor
-
A set of options that are mutually synonymous.
- options() - Method in exception joptsimple.OptionException
-
Gives the option being considered when the exception was created.
- options() - Method in interface joptsimple.OptionSpec
-
- OptionSet - Class in joptsimple
-
Representation of a group of detected command line options, their arguments, and non-option arguments.
- OptionSpec<V> - Interface in joptsimple
-
Describes options that an option parser recognizes.
- OptionSpecBuilder - Class in joptsimple
-
Allows callers to specify whether a given option accepts arguments (required or optional).
- value(OptionSet) - Method in class joptsimple.AbstractOptionSpec
-
- value(OptionSet) - Method in interface joptsimple.OptionSpec
-
Gives the argument associated with the given option in the given set of detected options.
- value - Variable in class joptsimple.util.KeyValuePair
-
- ValueConversionException - Exception in joptsimple
-
Thrown by
ValueConverter
s when problems occur in converting string values to other Java types.
- ValueConversionException(String) - Constructor for exception joptsimple.ValueConversionException
-
Creates a new exception with the specified detail message.
- ValueConversionException(String, Throwable) - Constructor for exception joptsimple.ValueConversionException
-
Creates a new exception with the specified detail message and cause.
- ValueConverter<V> - Interface in joptsimple
-
Instances of this interface are used to convert arguments of options into specific Java types.
- valueOf(String) - Method in class joptsimple.OptionSet
-
Gives the argument associated with the given option.
- valueOf(OptionSpec<V>) - Method in class joptsimple.OptionSet
-
Gives the argument associated with the given option.
- valueOf(String) - Static method in class joptsimple.util.KeyValuePair
-
Parses a string assumed to be of the form key=value
into its parts.
- valueOf(String) - Static method in enum joptsimple.util.PathProperties
-
Returns the enum constant of this type with the specified name.
- valueOfOptional(String) - Method in class joptsimple.OptionSet
-
Gives the argument associated with the given option, as an
Optional
.
- valueOfOptional(OptionSpec<V>) - Method in class joptsimple.OptionSet
-
Gives the argument associated with the given option as an
Optional
.
- valueOptional(OptionSet) - Method in class joptsimple.AbstractOptionSpec
-
- valueOptional(OptionSet) - Method in interface joptsimple.OptionSpec
-
Gives the argument associated with the given option in the given set of detected options
as an
Optional
.
- valuePattern() - Method in class joptsimple.util.DateConverter
-
- valuePattern() - Method in class joptsimple.util.EnumConverter
-
- valuePattern() - Method in class joptsimple.util.InetAddressConverter
-
- valuePattern() - Method in class joptsimple.util.PathConverter
-
- valuePattern() - Method in class joptsimple.util.RegexMatcher
-
- valuePattern() - Method in interface joptsimple.ValueConverter
-
Gives a string that describes the pattern of the values this converter expects, if any.
- values(OptionSet) - Method in class joptsimple.AbstractOptionSpec
-
- values(OptionSet) - Method in interface joptsimple.OptionSpec
-
Gives any arguments associated with the given option in the given set of detected options.
- values() - Static method in enum joptsimple.util.PathProperties
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- valuesOf(String) - Method in class joptsimple.OptionSet
-
Gives any arguments associated with the given option.
- valuesOf(OptionSpec<V>) - Method in class joptsimple.OptionSet
-
Gives any arguments associated with the given option.
- valueType() - Method in class joptsimple.util.DateConverter
-
- valueType() - Method in class joptsimple.util.EnumConverter
-
- valueType() - Method in class joptsimple.util.InetAddressConverter
-
- valueType() - Method in class joptsimple.util.PathConverter
-
- valueType() - Method in class joptsimple.util.RegexMatcher
-
- valueType() - Method in interface joptsimple.ValueConverter
-
Gives the class of the type of values this converter converts to.