Uses of Class
jargs.gnu.CmdLineParser.Option
Packages that use CmdLineParser.Option
-
Uses of CmdLineParser.Option in jargs.gnu
Subclasses of CmdLineParser.Option in jargs.gnuModifier and TypeClassDescriptionstatic classThe Class BooleanOption.static classAn option that expects a floating-point value.static classAn option that expects an integer value.static classAn option that expects a long integer value.static classAn option that expects a string value.Methods in jargs.gnu that return CmdLineParser.OptionModifier and TypeMethodDescriptionfinal CmdLineParser.OptionCmdLineParser.addBooleanOption(char shortForm, String longForm) Convenience method for adding a boolean option.final CmdLineParser.OptionCmdLineParser.addBooleanOption(String longForm) Convenience method for adding a boolean option.final CmdLineParser.OptionCmdLineParser.addDoubleOption(char shortForm, String longForm) Convenience method for adding a double option.final CmdLineParser.OptionCmdLineParser.addDoubleOption(String longForm) Convenience method for adding a double option.final CmdLineParser.OptionCmdLineParser.addIntegerOption(char shortForm, String longForm) Convenience method for adding an integer option.final CmdLineParser.OptionCmdLineParser.addIntegerOption(String longForm) Convenience method for adding an integer option.final CmdLineParser.OptionCmdLineParser.addLongOption(char shortForm, String longForm) Convenience method for adding a long integer option.final CmdLineParser.OptionCmdLineParser.addLongOption(String longForm) Convenience method for adding a long integer option.final CmdLineParser.OptionCmdLineParser.addOption(CmdLineParser.Option opt) Add the specified Option to the list of accepted options.final CmdLineParser.OptionCmdLineParser.addStringOption(char shortForm, String longForm) Convenience method for adding a string option.final CmdLineParser.OptionCmdLineParser.addStringOption(String longForm) Convenience method for adding a string option.CmdLineParser.IllegalOptionValueException.getOption()Gets the option.Methods in jargs.gnu with parameters of type CmdLineParser.OptionModifier and TypeMethodDescriptionfinal CmdLineParser.OptionCmdLineParser.addOption(CmdLineParser.Option opt) Add the specified Option to the list of accepted options.final ObjectCmdLineParser.getOptionValue(CmdLineParser.Option o) Equivalent togetOptionValue(o, null).final ObjectCmdLineParser.getOptionValue(CmdLineParser.Option o, Object def) Gets the option value.CmdLineParser.getOptionValues(CmdLineParser.Option option) Gets the option values.Constructors in jargs.gnu with parameters of type CmdLineParser.OptionModifierConstructorDescriptionIllegalOptionValueException(CmdLineParser.Option opt, String value) Instantiates a new illegal option value exception.