Serialized Form
-
Package org.apache.commons.cli
-
Class org.apache.commons.cli.AlreadySelectedException extends ParseException implements Serializable
- serialVersionUID:
- 3674381532418544760L
-
Serialized Fields
-
group
OptionGroup group
The option group selected. -
option
Option option
The option that triggered the exception.
-
-
Class org.apache.commons.cli.AmbiguousOptionException extends UnrecognizedOptionException implements Serializable
- serialVersionUID:
- 5829816121277947229L
-
Serialized Fields
-
matchingOptions
Collection<String> matchingOptions
The list of options matching the partial name specified
-
-
Class org.apache.commons.cli.CommandLine extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.commons.cli.MissingArgumentException extends ParseException implements Serializable
- serialVersionUID:
- -7098538588704965017L
-
Serialized Fields
-
option
Option option
The option requiring additional arguments
-
-
Class org.apache.commons.cli.MissingOptionException extends ParseException implements Serializable
- serialVersionUID:
- 8161889051578563249L
-
Serialized Fields
-
missingOptions
List missingOptions
The list of missing options and groups
-
-
Class org.apache.commons.cli.Option extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
argName
String argName
the name of the argument for this option -
description
String description
description of the option -
longOpt
String longOpt
the long representation of the option -
numberOfArgs
int numberOfArgs
the number of argument values this option can have -
opt
String opt
the name of the option -
optionalArg
boolean optionalArg
specifies whether the argument value of this Option is optional -
required
boolean required
specifies whether this option is required to be present -
type
Class<?> type
the type of this Option -
values
List<String> values
the list of argument values -
valuesep
char valuesep
the character that is the value separator
-
-
Class org.apache.commons.cli.OptionGroup extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.commons.cli.Options extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
longOpts
Map<String,Option> longOpts
a map of the options with the long key -
optionGroups
Map<String,OptionGroup> optionGroups
a map of the option groups -
requiredOpts
List<Object> requiredOpts
a map of the required options -
shortOpts
Map<String,Option> shortOpts
a map of the options with the character key
-
-
Class org.apache.commons.cli.ParseException extends Exception implements Serializable
- serialVersionUID:
- 9112808380089253192L
-
Class org.apache.commons.cli.UnrecognizedOptionException extends ParseException implements Serializable
- serialVersionUID:
- -252504690284625623L
-
Serialized Fields
-
option
String option
The unrecognized option
-
-