Uses of Class
jargs.gnu.CmdLineParser.Option
-
Packages that use CmdLineParser.Option Package Description jargs.examples.gnu jargs.gnu jargs.test.gnu -
-
Uses of CmdLineParser.Option in jargs.examples.gnu
Subclasses of CmdLineParser.Option in jargs.examples.gnu Modifier and Type Class Description static classCustomOptionTest.ShortDateOptionA custom type of command line option corresponding to a short date value, e.g.Methods in jargs.examples.gnu that return CmdLineParser.Option Modifier and Type Method Description CmdLineParser.OptionAutoHelpParser. addHelp(CmdLineParser.Option option, String helpString)Methods in jargs.examples.gnu with parameters of type CmdLineParser.Option Modifier and Type Method Description CmdLineParser.OptionAutoHelpParser. addHelp(CmdLineParser.Option option, String helpString) -
Uses of CmdLineParser.Option in jargs.gnu
Subclasses of CmdLineParser.Option in jargs.gnu Modifier and Type Class Description static classCmdLineParser.Option.BooleanOptionstatic classCmdLineParser.Option.DoubleOptionAn option that expects a floating-point valuestatic classCmdLineParser.Option.IntegerOptionAn option that expects an integer valuestatic classCmdLineParser.Option.LongOptionAn option that expects a long integer valuestatic classCmdLineParser.Option.StringOptionAn option that expects a string valueMethods in jargs.gnu that return CmdLineParser.Option Modifier and Type Method Description CmdLineParser.OptionCmdLineParser. addBooleanOption(char shortForm, String longForm)Convenience method for adding a boolean option.CmdLineParser.OptionCmdLineParser. addBooleanOption(String longForm)Convenience method for adding a boolean option.CmdLineParser.OptionCmdLineParser. addDoubleOption(char shortForm, String longForm)Convenience method for adding a double option.CmdLineParser.OptionCmdLineParser. addDoubleOption(String longForm)Convenience method for adding a double option.CmdLineParser.OptionCmdLineParser. addIntegerOption(char shortForm, String longForm)Convenience method for adding an integer option.CmdLineParser.OptionCmdLineParser. addIntegerOption(String longForm)Convenience method for adding an integer option.CmdLineParser.OptionCmdLineParser. addLongOption(char shortForm, String longForm)Convenience method for adding a long integer option.CmdLineParser.OptionCmdLineParser. addLongOption(String longForm)Convenience method for adding a long integer option.CmdLineParser.OptionCmdLineParser. addOption(CmdLineParser.Option opt)Add the specified Option to the list of accepted optionsCmdLineParser.OptionCmdLineParser. addStringOption(char shortForm, String longForm)Convenience method for adding a string option.CmdLineParser.OptionCmdLineParser. addStringOption(String longForm)Convenience method for adding a string option.CmdLineParser.OptionCmdLineParser.IllegalOptionValueException. getOption()Methods in jargs.gnu with parameters of type CmdLineParser.Option Modifier and Type Method Description CmdLineParser.OptionCmdLineParser. addOption(CmdLineParser.Option opt)Add the specified Option to the list of accepted optionsObjectCmdLineParser. getOptionValue(CmdLineParser.Option o)Equivalent togetOptionValue(o, null).ObjectCmdLineParser. getOptionValue(CmdLineParser.Option o, Object def)VectorCmdLineParser. getOptionValues(CmdLineParser.Option option)Constructors in jargs.gnu with parameters of type CmdLineParser.Option Constructor Description IllegalOptionValueException(CmdLineParser.Option opt, String value) -
Uses of CmdLineParser.Option in jargs.test.gnu
Subclasses of CmdLineParser.Option in jargs.test.gnu Modifier and Type Class Description static classCustomOptionTestCase.ShortDateOption
-