Frames | No Frames |
Fields of type org.apache.commons.cli.OptionBuilder | |
OptionBuilder | option builder instance |
Methods with return type org.apache.commons.cli.OptionBuilder | |
OptionBuilder | The next Option created will require an argument value. |
OptionBuilder | OptionBuilder.hasArg(boolean hasArg) The next Option created will require an argument value if
hasArg is true. |
OptionBuilder | The next Option created can have unlimited argument values. |
OptionBuilder | OptionBuilder.hasArgs(int num) The next Option created can have num
argument values. |
OptionBuilder | The next Option can have an optional argument. |
OptionBuilder | The next Option can have an unlimited number of
optional arguments. |
OptionBuilder | OptionBuilder.hasOptionalArgs(int numArgs) The next Option can have the specified number of
optional arguments. |
OptionBuilder | The next Option created will be required. |
OptionBuilder | OptionBuilder.isRequired(boolean required) The next Option created will be required if required
is true. |
OptionBuilder | OptionBuilder.withArgName(String name) The next Option created will have the specified argument value
name. |
OptionBuilder | OptionBuilder.withDescription(String description) The next Option created will have the specified description
|
OptionBuilder | OptionBuilder.withLongOpt(String longopt) The next Option created will have the following long option value. |
OptionBuilder | OptionBuilder.withType(Object type) The next Option created will have a value that will be an instance
of type . |
OptionBuilder | The next Option created uses ' = ' as a means to
separate argument values. |
OptionBuilder | OptionBuilder.withValueSeparator(char sep) The next Option created uses sep as a means to
separate argument values. |