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