Enum NumeralStyle

    • Enum Constant Detail

      • DEFAULT

        public static final NumeralStyle DEFAULT
        Defines default numeral style, alias of DECIMAL.
      • DECIMAL

        public static final NumeralStyle DECIMAL
        Defines a decimal numeral style.
      • DECIMAL_LEADING_ZERO

        public static final NumeralStyle DECIMAL_LEADING_ZERO
        Defines a number with a single leading zero if the number is < 10 (01, 02, 03, etc.).
      • ROMAN

        public static final NumeralStyle ROMAN
        Defines roman numeral style, alias of UPPER_ROMAN.
      • UPPER_ROMAN

        public static final NumeralStyle UPPER_ROMAN
        Defines upper roman numeral style.
      • LOWER_ROMAN

        public static final NumeralStyle LOWER_ROMAN
        Defines lower roman numeral style.
      • ALPHA

        public static final NumeralStyle ALPHA
        Defines alpha numeral style, alias of UPPER_ALPHA.
      • UPPER_ALPHA

        public static final NumeralStyle UPPER_ALPHA
        Defines upper alpha numeral style.
      • LOWER_ALPHA

        public static final NumeralStyle LOWER_ALPHA
        Defines lower alpha numeral style.
    • Method Detail

      • values

        public static NumeralStyle[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (NumeralStyle c : NumeralStyle.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static NumeralStyle 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
      • format

        public String format​(int i)
        Formats the numeral with the given style.
        Parameters:
        i - the number
        Returns:
        returns the formatted number