public enum EntityPropertyType extends Enum<EntityPropertyType>
| Enum Constant and Description |
|---|
Boolean
Boolean.
|
Double
Double.
|
Integer
Integer.
|
String
String.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
cast(String stringValue) |
void |
checkValue(Object value) |
static EntityPropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityPropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityPropertyType Integer
public static final EntityPropertyType Double
public static final EntityPropertyType Boolean
public static final EntityPropertyType String
public static EntityPropertyType[] values()
for (EntityPropertyType c : EntityPropertyType.values()) System.out.println(c);
public static EntityPropertyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic void checkValue(Object value)
Copyright © 2015. All Rights Reserved.