Class SimpleCommandLineParser.BooleanOption

    • Constructor Summary

      Constructors 
      Constructor Description
      BooleanOption​(java.lang.String aShortName, java.lang.String aLongName)
      Creates a new boolean option.
      BooleanOption​(java.lang.String aShortName, java.lang.String aLongName, java.lang.String aDescription)
      Creates a new boolean option.
      BooleanOption​(java.lang.String aShortName, java.lang.String aLongName, java.lang.String aDescription, java.lang.String aCommandLine)
      Creates a new boolean option.
    • Constructor Detail

      • BooleanOption

        public BooleanOption​(java.lang.String aShortName,
                             java.lang.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​(java.lang.String aShortName,
                             java.lang.String aLongName,
                             java.lang.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​(java.lang.String aShortName,
                             java.lang.String aLongName,
                             java.lang.String aDescription,
                             java.lang.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 Detail

      • isSet

        public boolean isSet()