Class SimpleCommandLineParser.LongOption

Enclosing class:
SimpleCommandLineParser

public static class SimpleCommandLineParser.LongOption extends SimpleCommandLineParser.ValueOption<Long>
Long option.
Author:
Rene Schneider - initial API and implementation
  • Constructor Details

    • LongOption

      public LongOption(String aShortName, String aLongName)
      Creates a long option.
      Parameters:
      aShortName - The short name of the option. Usually just one character.
      aLongName - The long name of the option, generelly a comprehendable, but not-too-long string.
    • LongOption

      public LongOption(String aShortName, String aLongName, String aDescription)
      Creates a new integer option.
      Parameters:
      aShortName - The short name of the option. Usually just one character.
      aLongName - The long name of the option, generelly a comprehendable, but not-too-long string.
      aDescription - The command line help string for this option.
    • LongOption

      public LongOption(String aShortName, String aLongName, String aDescription, String aCommandLine)
      Creates a new integer option.
      Parameters:
      aShortName - The short name of the option. Usually just one character.
      aLongName - The long name of the option, generelly a comprehendable, but not-too-long string.
      aDescription - The command line help string for this option.
      aCommandLine - The description for the help.
  • Method Details