OptionSpecBuilder |
OptionDeclarer.accepts(java.lang.String option) |
Tells the parser to recognize the given option.
|
OptionSpecBuilder |
OptionDeclarer.accepts(java.lang.String option,
java.lang.String description) |
Tells the parser to recognize the given option.
|
OptionSpecBuilder |
OptionParser.accepts(java.lang.String option) |
|
OptionSpecBuilder |
OptionParser.accepts(java.lang.String option,
java.lang.String description) |
|
OptionSpecBuilder |
OptionDeclarer.acceptsAll(java.util.List<java.lang.String> options) |
Tells the parser to recognize the given options, and treat them as synonymous.
|
OptionSpecBuilder |
OptionDeclarer.acceptsAll(java.util.List<java.lang.String> options,
java.lang.String description) |
Tells the parser to recognize the given options, and treat them as synonymous.
|
OptionSpecBuilder |
OptionParser.acceptsAll(java.util.List<java.lang.String> options) |
|
OptionSpecBuilder |
OptionParser.acceptsAll(java.util.List<java.lang.String> options,
java.lang.String description) |
|
OptionSpecBuilder |
OptionSpecBuilder.availableIf(java.lang.String dependent,
java.lang.String... otherDependents) |
Informs an option parser that this builder's option is allowed if the given option is present on the command
line.
|
OptionSpecBuilder |
OptionSpecBuilder.availableIf(OptionSpec<?> dependent,
OptionSpec<?>... otherDependents) |
Informs an option parser that this builder's option is allowed if the given option is present on the command
line.
|
OptionSpecBuilder |
OptionSpecBuilder.availableUnless(java.lang.String dependent,
java.lang.String... otherDependents) |
Informs an option parser that this builder's option is allowed if the given option is absent on the command
line.
|
OptionSpecBuilder |
OptionSpecBuilder.availableUnless(OptionSpec<?> dependent,
OptionSpec<?>... otherDependents) |
Informs an option parser that this builder's option is allowed if the given option is absent on the command
line.
|
OptionSpecBuilder |
OptionSpecBuilder.requiredIf(java.lang.String dependent,
java.lang.String... otherDependents) |
Informs an option parser that this builder's option is required if the given option is present on the command
line.
|
OptionSpecBuilder |
OptionSpecBuilder.requiredIf(OptionSpec<?> dependent,
OptionSpec<?>... otherDependents) |
Informs an option parser that this builder's option is required if the given option is present on the command
line.
|
OptionSpecBuilder |
OptionSpecBuilder.requiredUnless(java.lang.String dependent,
java.lang.String... otherDependents) |
Informs an option parser that this builder's option is required if the given option is absent on the command
line.
|
OptionSpecBuilder |
OptionSpecBuilder.requiredUnless(OptionSpec<?> dependent,
OptionSpec<?>... otherDependents) |
Informs an option parser that this builder's option is required if the given option is absent on the command
line.
|