Package | Description |
---|---|
org.wikibrain.conf |
Modifier and Type | Method and Description |
---|---|
DefaultOptionBuilder |
DefaultOptionBuilder.hasArg()
The next Option created will require an argument value.
|
DefaultOptionBuilder |
DefaultOptionBuilder.hasArg(boolean hasArg)
The next Option created will require an argument value if
hasArg is true. |
DefaultOptionBuilder |
DefaultOptionBuilder.hasArgs()
The next Option created can have unlimited argument values.
|
DefaultOptionBuilder |
DefaultOptionBuilder.hasArgs(int num)
The next Option created can have
num argument values. |
DefaultOptionBuilder |
DefaultOptionBuilder.hasOptionalArg()
The next Option can have an optional argument.
|
DefaultOptionBuilder |
DefaultOptionBuilder.hasOptionalArgs()
The next Option can have an unlimited number of optional arguments.
|
DefaultOptionBuilder |
DefaultOptionBuilder.hasOptionalArgs(int numArgs)
The next Option can have the specified number of optional arguments.
|
DefaultOptionBuilder |
DefaultOptionBuilder.isRequired()
The next Option created will be required.
|
DefaultOptionBuilder |
DefaultOptionBuilder.isRequired(boolean newRequired)
The next Option created will be required if
required
is true. |
DefaultOptionBuilder |
DefaultOptionBuilder.withArgName(String name)
The next Option created will have the specified argument value name.
|
DefaultOptionBuilder |
DefaultOptionBuilder.withDescription(String newDescription)
The next Option created will have the specified description
|
DefaultOptionBuilder |
DefaultOptionBuilder.withLongOpt(String newLongopt)
The next Option created will have the following long option value.
|
DefaultOptionBuilder |
DefaultOptionBuilder.withType(Class newType)
The next Option created will have a value that will be an instance
of
type . |
DefaultOptionBuilder |
DefaultOptionBuilder.withValueSeparator()
The next Option created uses '
= ' as a means to
separate argument values. |
DefaultOptionBuilder |
DefaultOptionBuilder.withValueSeparator(char sep)
The next Option created uses
sep as a means to
separate argument values. |
Copyright © 2018. All rights reserved.