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
java.util.Collection<java.lang.String> matchingOptions
The list of options matching the partial name specified
-
-
Class org.apache.commons.cli.CommandLine extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
args
java.util.List<java.lang.String> args
The unrecognized options/arguments -
options
java.util.List<Option> options
The processed options
-
-
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
java.util.List missingOptions
The list of missing options and groups
-
-
Class org.apache.commons.cli.Option extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
argCount
int argCount
The number of argument values this option can have. -
argName
java.lang.String argName
The name of the argument for this option. -
description
java.lang.String description
Description of the option. -
longOption
java.lang.String longOption
The long representation of the option. -
option
java.lang.String option
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
java.lang.Class<?> type
The type of this Option. -
values
java.util.List<java.lang.String> values
The list of argument values. -
valuesep
char valuesep
The character that is the value separator.
-
-
Class org.apache.commons.cli.OptionGroup extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
optionMap
java.util.Map<java.lang.String,Option> optionMap
hold the options -
required
boolean required
specified whether this group is required -
selected
java.lang.String selected
The name of the selected option
-
-
Class org.apache.commons.cli.Options extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
longOpts
java.util.Map<java.lang.String,Option> longOpts
a map of the options with the long key -
optionGroups
java.util.Map<java.lang.String,OptionGroup> optionGroups
a map of the option groups -
requiredOpts
java.util.List<java.lang.Object> requiredOpts
a map of the required options -
shortOpts
java.util.Map<java.lang.String,Option> shortOpts
a map of the options with the character key
-
-
Class org.apache.commons.cli.ParseException extends java.lang.Exception implements Serializable
- serialVersionUID:
- 9112808380089253192L
-
Class org.apache.commons.cli.UnrecognizedOptionException extends ParseException implements Serializable
- serialVersionUID:
- -252504690284625623L
-
Serialized Fields
-
option
java.lang.String option
The unrecognized option.
-
-