public enum MixedItemStyle extends Enum<MixedItemStyle> implements Key
Enum Constant and Description |
---|
LONG
Long setting for month (e.g., March).
|
NARROW
Narrow setting for month (e.g., M).
Two months may have the same narrow style for some locales (e.g. |
NUMERIC
Numeric setting for month (e.g., 2).
|
SHORT
Short setting for month (e.g., Mar).
|
TWO_DIGITS
2 digits setting for month (e.g., 02).
|
Modifier and Type | Method and Description |
---|---|
String |
value()
Returns the name value of property
|
static MixedItemStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MixedItemStyle[] |
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, valueOf
checkAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValid
public static final MixedItemStyle NUMERIC
public static final MixedItemStyle TWO_DIGITS
public static final MixedItemStyle NARROW
public static final MixedItemStyle LONG
public static final MixedItemStyle SHORT
public static MixedItemStyle[] values()
for (MixedItemStyle c : MixedItemStyle.values()) System.out.println(c);
public static MixedItemStyle 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