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