Uses of Class org.apache.commons.cli.OptionBuilder

Uses in package org.apache.commons.cli

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
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
The next Option can have the specified number of optional arguments.
OptionBuilder
The next Option created will be required.
OptionBuilder
OptionBuilder.isRequired(boolean newRequired)
The next Option created will be required if required is true.
OptionBuilder
The next Option created will have the specified argument value name.
OptionBuilder
OptionBuilder.withDescription(String newDescription)
The next Option created will have the specified description
OptionBuilder
OptionBuilder.withLongOpt(String newLongopt)
The next Option created will have the following long option value.
OptionBuilder
OptionBuilder.withType(Object newType)
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
The next Option created uses sep as a means to separate argument values.