Class SimpleCommandLineParser.BooleanOption

java.lang.Object
de.gebit.integrity.runner.console.SimpleCommandLineParser.Option
de.gebit.integrity.runner.console.SimpleCommandLineParser.BooleanOption
Enclosing class:
SimpleCommandLineParser

public static class SimpleCommandLineParser.BooleanOption extends SimpleCommandLineParser.Option
A boolean command line option.
Author:
Rene Schneider - initial API and implementation
  • Constructor Details

    • BooleanOption

      public BooleanOption(String aShortName, String aLongName)
      Creates a new boolean 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.
    • BooleanOption

      public BooleanOption(String aShortName, String aLongName, String aDescription)
      Creates a new boolean 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.
    • BooleanOption

      public BooleanOption(String aShortName, String aLongName, String aDescription, String aCommandLine)
      Creates a new boolean 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