Uses of Class
org.apache.commons.cli.Option

Uses of Option in org.apache.commons.cli
 

Fields in org.apache.commons.cli declared as Option
private  Option PosixParser.currentOption
          holder for the current option
private  Option[] CommandLine.optionsArray
          the processed options
 

Methods in org.apache.commons.cli that return Option
static Option OptionBuilder.create(char opt)
          Create an Option using the current settings and with the specified Option char.
static Option OptionBuilder.create()
          Create an Option using the current settings
static Option OptionBuilder.create(java.lang.String opt)
          Create an Option using the current settings and with the specified Option char.
 Option[] CommandLine.getOptions()
          Returns an array of the processed Options.
 Option Options.getOption(java.lang.String opt)
          Retrieve the named Option
 

Methods in org.apache.commons.cli with parameters of type Option
private static void HelpFormatter.appendOption(java.lang.StringBuffer buff, Option option, boolean required)
          Appends the usage clause for an Option to a StringBuffer.
static org.apache.commons.cli2.Option CLI2Converter.option(Option option1)
          Creates a version 2 Option instance from a version 1 Option instance.
private static boolean CLI2Converter.optionInAGroup(Option option1, java.util.Set optionGroups)
           
 OptionGroup OptionGroup.addOption(Option opt)
          add opt to this group
 void OptionGroup.setSelected(Option opt)
          set the selected option of this group to name.
(package private)  void CommandLine.addOption(Option opt)
          Add an option to the command line.
 Options Options.addOption(Option opt)
          Adds an option instance
 OptionGroup Options.getOptionGroup(Option opt)
          Returns the OptionGroup the opt belongs to.
 void Parser.processArgs(Option opt, java.util.ListIterator iter)
          Process the argument values for the specified Option opt using the values retrieved from the specified iterator iter.