public enum InterpretAsDateFormat extends java.lang.Enum<InterpretAsDateFormat>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static InterpretAsDateFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterpretAsDateFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpretAsDateFormat MDY
public static final InterpretAsDateFormat DMY
public static final InterpretAsDateFormat YMD
public static final InterpretAsDateFormat MD
public static final InterpretAsDateFormat DM
public static final InterpretAsDateFormat YM
public static final InterpretAsDateFormat MY
public static final InterpretAsDateFormat D
public static final InterpretAsDateFormat M
public static final InterpretAsDateFormat Y
public static InterpretAsDateFormat[] values()
for (InterpretAsDateFormat c : InterpretAsDateFormat.values()) System.out.println(c);
public static InterpretAsDateFormat 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<InterpretAsDateFormat>