| Class Summary | |
|---|---|
| AllTests | |
| AutoHelpParser | This example shows how to dynamically create basic output for a --help option. |
| CmdLineParser | Largely GNU-compatible command-line options parser. |
| CmdLineParserTestCase | |
| CmdLineParser.IllegalOptionValueException | Thrown when an illegal or missing value is given by the user for an option that takes a value. |
| CmdLineParser.NotFlagException | Thrown when the parsed commandline contains multiple concatenated short options, such as -abcd, where one or more requires a value. |
| CmdLineParser.Option | Representation of a command-line option |
| CmdLineParser.OptionException | Base class for exceptions that may be thrown when options are parsed |
| CmdLineParser.Option.BooleanOption | |
| CmdLineParser.Option.DoubleOption | An option that expects a floating-point value |
| CmdLineParser.Option.IntegerOption | An option that expects an integer value |
| CmdLineParser.Option.LongOption | An option that expects a long integer value |
| CmdLineParser.Option.StringOption | An option that expects a string value |
| CmdLineParser.UnknownOptionException | Thrown when the parsed command-line contains an option that is not recognised. |
| CmdLineParser.UnknownSuboptionException | Thrown when the parsed commandline contains multiple concatenated short options, such as -abcd, where one is unknown. |
| CustomOptionTest | |
| CustomOptionTestCase | |
| CustomOptionTestCase.ShortDateOption | |
| CustomOptionTest.ShortDateOption | A custom type of command line option corresponding to a short date value, e.g. |
| OptionParserSubclassTest | |
| OptionTest | |