Package | Description |
---|---|
joptsimple |
Modifier and Type | Method and Description |
---|---|
OptionSet |
OptionParser.parse(String... arguments)
Parses the given command line arguments according to the option specifications given to the parser.
|
Modifier and Type | Method and Description |
---|---|
V |
OptionSpec.value(OptionSet detectedOptions)
Gives the argument associated with the given option in the given set of detected options.
|
V |
AbstractOptionSpec.value(OptionSet detectedOptions) |
default Optional<V> |
OptionSpec.valueOptional(OptionSet detectedOptions)
Gives the argument associated with the given option in the given set of detected options
as an
Optional . |
Optional<V> |
AbstractOptionSpec.valueOptional(OptionSet detectedOptions) |
List<V> |
OptionSpec.values(OptionSet detectedOptions)
Gives any arguments associated with the given option in the given set of detected options.
|
List<V> |
AbstractOptionSpec.values(OptionSet detectedOptions) |
© Copyright 2004-2016 Paul R. Holser, Jr. All rights reserved. Licensed under The MIT License.