Uses of Class
name.kevinlocke.ultragetopt.CommandLineOption

Uses of CommandLineOption in name.kevinlocke.ultragetopt
 

Methods in name.kevinlocke.ultragetopt that return CommandLineOption
 CommandLineOption OptionArgumentPair.getOption()
          Gets the option of the pair.
 

Methods in name.kevinlocke.ultragetopt that return types with arguments of type CommandLineOption
 java.util.Map<CommandLineOption,java.lang.String> UltraGetopt.getOptions()
          Gets all options present on the command-line and their associated arguments (null for options without values).
 

Methods in name.kevinlocke.ultragetopt with parameters of type CommandLineOption
 void OptionArgumentPair.setOption(CommandLineOption option)
          Sets the option.
 

Constructors in name.kevinlocke.ultragetopt with parameters of type CommandLineOption
OptionArgumentPair(CommandLineOption option, java.lang.String argument)
          Creates a new option-argument pair.
UltraGetopt(java.lang.String[] args, CommandLineOption[] options)
          Creates an instance of UltraGetopt with the default set of options for the platform on which the program is running.
UltraGetopt(java.lang.String[] args, CommandLineOption[] options, java.util.EnumSet<UltraGetopt.Behavior> behavior)
          Creates an instance of UltraGetopt with a chosen compatibility behavior.
UltraGetopt(java.lang.String[] args, CommandLineOption[] options, java.util.EnumSet<UltraGetopt.Behavior> behavior, java.lang.String[] shortleaders, java.lang.String[] longleaders, java.lang.String[] assigners, GetoptErrorFormatter formatter)
          Creates an instance of UltraGetopt with customized behavior based on the specified arguments.
UltraGetopt(java.lang.String programname, java.lang.String[] args, CommandLineOption[] options)
          Creates an instance of UltraGetopt with the default set of options for the platform on which the program is running.
UltraGetopt(java.lang.String programname, java.lang.String[] args, CommandLineOption[] options, java.util.EnumSet<UltraGetopt.Behavior> behavior)
          Creates an instance of UltraGetopt with a chosen compatibility behavior and program name.