public enum FIELD_TYPE extends java.lang.Enum<FIELD_TYPE>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DOUBLE |
INTEGER |
STRING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static FIELD_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FIELD_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FIELD_TYPE BOOLEAN
public static final FIELD_TYPE DATE
public static final FIELD_TYPE DOUBLE
public static final FIELD_TYPE INTEGER
public static final FIELD_TYPE STRING
public static FIELD_TYPE[] values()
for (FIELD_TYPE c : FIELD_TYPE.values()) System.out.println(c);
public static FIELD_TYPE 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<FIELD_TYPE>