public enum NumberStyle extends java.lang.Enum<NumberStyle>
| Enum Constant and Description |
|---|
DECIMAL
Decimal arabic numerals (1,2,3...)
|
LETTER_LOWERCASE
Lowercase letters (a,b,c...aa,bb...)
|
LETTER_UPPERCASE
Uppercase letters (A,B,C...AA,BB...)
|
NONE
Use no NumberStyle, only Prefix
|
ROMAN_LOWERCASE
Lowercase Roman numerals (i,ii,iii...)
|
ROMAN_UPPERCASE
Uppercase Roman numerals (I,II,III...)
|
| Modifier and Type | Method and Description |
|---|---|
static NumberStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NumberStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberStyle DECIMAL
public static final NumberStyle ROMAN_UPPERCASE
public static final NumberStyle ROMAN_LOWERCASE
public static final NumberStyle LETTER_UPPERCASE
public static final NumberStyle LETTER_LOWERCASE
public static final NumberStyle NONE
public static NumberStyle[] values()
for (NumberStyle c : NumberStyle.values()) System.out.println(c);
public static NumberStyle valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null