public enum NumberItemStyle extends Enum<NumberItemStyle> implements Key
| Enum Constant and Description | 
|---|
NUMERIC
Numeric setting for item (e.g., 1). 
 | 
TWO_DIGITS
2 digits setting for item (e.g., 01). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
value()
Returns the name value of property 
 | 
static NumberItemStyle | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static NumberItemStyle[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcheckAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValidpublic static final NumberItemStyle NUMERIC
public static final NumberItemStyle TWO_DIGITS
public static NumberItemStyle[] values()
for (NumberItemStyle c : NumberItemStyle.values()) System.out.println(c);
public static NumberItemStyle valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null