Class | Description |
---|---|
Options |
The Options class:
parses command-line options and sets fields in your program accordingly,
creates usage messages (such as printed by a
--help option), and
creates documentation suitable for a manual or manpage. |
OptionsDoclet |
Generates HTML documentation of command-line options.
|
StringBuilderDelimited |
Like StringBuilder, but adds a delimiter between each pair of strings that are inserted into the
Stringbuilder.
|
Exception | Description |
---|---|
Options.ArgException |
Indicates an exception encountered during argument processing.
|
Annotation Type | Description |
---|---|
Option |
Indicates that the annotated field is set via command-line option.
|
OptionGroup |
Used in conjunction with the
@Option annotation to indicate that the following
@Option -annotated fields (including the one the @OptionGroup annotation is
applied to) belong to the same option group. |
Unpublicized |
Used in conjunction with the
@Option annotation to signal that the option should not be
included in the usage message, unless an optional include_unpublicized argument is supplied to
the usage message method and is true. |