Enum Class ArgsPrefix

java.lang.Object
java.lang.Enum<ArgsPrefix>
org.refcodes.data.ArgsPrefix
All Implemented Interfaces:
Serializable, Comparable<ArgsPrefix>, Constable, org.refcodes.mixin.PrefixAccessor

public enum ArgsPrefix extends Enum<ArgsPrefix> implements org.refcodes.mixin.PrefixAccessor
Commonly used prefixes needful for analyzing, parsing or truncating command line arguments and so on.
  • Enum Constant Details

    • WINDOWS_SHORT_OPTION

      public static final ArgsPrefix WINDOWS_SHORT_OPTION
      A DOS box short option is prefixed with a single slash "/".
    • WINDOWS_LONG_OPTION

      public static final ArgsPrefix WINDOWS_LONG_OPTION
      A DOS box long option is undefined and herewith prefixed with a double hyphen-minus "--".
    • POSIX_SHORT_OPTION

      public static final ArgsPrefix POSIX_SHORT_OPTION
      A command line argument (POSIX) short-option is prefixed with a single hyphen-minus "-".
    • POSIX_LONG_OPTION

      public static final ArgsPrefix POSIX_LONG_OPTION
      A command line argument (POSIX) long-option is prefixed with a double hyphen-minus "--".
  • Method Details

    • values

      public static ArgsPrefix[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ArgsPrefix valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getPrefix

      public String getPrefix()
      Specified by:
      getPrefix in interface org.refcodes.mixin.PrefixAccessor
    • toPrefixes

      public static String[] toPrefixes()
      Returns an array with all String prefixes as of getPrefix() defined by this enumeration.
      Returns:
      The array with the according prefixes.