public enum DateFormatType extends java.lang.Enum<DateFormatType>
Enum Constant and Description |
---|
DDMMYY |
MMDDYY |
MMYY |
NA |
YYDDMM |
YYMM |
YYMMDD |
Modifier and Type | Method and Description |
---|---|
byte |
getType() |
static DateFormatType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DateFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateFormatType MMYY
public static final DateFormatType YYMM
public static final DateFormatType DDMMYY
public static final DateFormatType MMDDYY
public static final DateFormatType YYMMDD
public static final DateFormatType YYDDMM
public static final DateFormatType NA
public static DateFormatType[] values()
for (DateFormatType c : DateFormatType.values()) System.out.println(c);
public static DateFormatType 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 byte getType()