Enum NumericFlag

java.lang.Object
java.lang.Enum<NumericFlag>
org.wildfly.common.format.NumericFlag
All Implemented Interfaces:
Serializable, Comparable<NumericFlag>

public enum NumericFlag extends Enum<NumericFlag>
  • Enum Constant Details

    • SIGN

      public static final NumericFlag SIGN
    • SPACE_POSITIVE

      public static final NumericFlag SPACE_POSITIVE
    • ZERO_PAD

      public static final NumericFlag ZERO_PAD
    • LOCALE_GROUPING_SEPARATORS

      public static final NumericFlag LOCALE_GROUPING_SEPARATORS
    • NEGATIVE_PARENTHESES

      public static final NumericFlag NEGATIVE_PARENTHESES
  • Method Details

    • values

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

      public static NumericFlag valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null