Uses of Class
jargs.gnu.CmdLineParser.Option
-
Packages that use CmdLineParser.Option Package Description jargs.gnu Jargs GNU package. -
-
Uses of CmdLineParser.Option in jargs.gnu
Subclasses of CmdLineParser.Option in jargs.gnu Modifier and Type Class Description static classCmdLineParser.Option.BooleanOptionThe Class BooleanOption.static classCmdLineParser.Option.DoubleOptionAn option that expects a floating-point value.static classCmdLineParser.Option.IntegerOptionAn option that expects an integer value.static classCmdLineParser.Option.LongOptionAn option that expects a long integer value.static classCmdLineParser.Option.StringOptionAn option that expects a string value.Methods 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 options.CmdLineParser.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()Gets the option.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 options.ObjectCmdLineParser. getOptionValue(CmdLineParser.Option o)Equivalent togetOptionValue(o, null).ObjectCmdLineParser. getOptionValue(CmdLineParser.Option o, Object def)Gets the option value.List<String>CmdLineParser. getOptionValues(CmdLineParser.Option option)Gets the option values.Constructors in jargs.gnu with parameters of type CmdLineParser.Option Constructor Description IllegalOptionValueException(CmdLineParser.Option opt, String value)Instantiates a new illegal option value exception.
-