public class PdrOptions
extends Options
Constructor and Description |
---|
PdrOptions() |
Modifier and Type | Method and Description |
---|---|
void |
addOption(CLO arg)
Required and hasArgument = true.
|
void |
addOption(CLO<?> arg,
java.lang.String additionalDescription)
Required and hasArgument = true.
|
void |
addOption(CLO arg,
boolean hasArgument)
Required = true.
|
void |
addOption(CLO arg,
boolean hasArgument,
boolean isRequired)
Add an option to the options list.
|
public final void addOption(CLO arg, boolean hasArgument, boolean isRequired)
arg
- (CLO) The option in form of an CLO-object.hasArgument
- The option expects an argument.isRequired
- The option is required.public final void addOption(CLO arg, boolean hasArgument)
arg
- (CLO) The option in form of an CLO-object.hasArgument
- The option expects an argument.public final void addOption(CLO arg)
arg
- (CLO) The option in form of an CLO-object.public final void addOption(CLO<?> arg, java.lang.String additionalDescription)
arg
- (CLO) The option in form of an CLO-object.additionalDescription
- Additional description of this option.