public enum GeneratedDateFormatValues extends java.lang.Enum<GeneratedDateFormatValues>
List of formats for generated date.
Enum Constant and Description |
---|
_E
MM/DD/YY format.
|
_F
DD/MM/YY format.
|
Modifier and Type | Method and Description |
---|---|
static GeneratedDateFormatValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeneratedDateFormatValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneratedDateFormatValues _E
MM/DD/YY format.
public static final GeneratedDateFormatValues _F
DD/MM/YY format.
public static GeneratedDateFormatValues 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 static GeneratedDateFormatValues[] values()
for (GeneratedDateFormatValues c : GeneratedDateFormatValues.values()) System.out.println(c);