public enum SinglePropertyType extends Enum<SinglePropertyType> implements PropertyType
| Enum Constant and Description |
|---|
BOOLEAN |
DOUBLE |
INTEGER |
NEW |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
String |
getDeclareName() |
static SinglePropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SinglePropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SinglePropertyType NEW
public static final SinglePropertyType STRING
public static final SinglePropertyType INTEGER
public static final SinglePropertyType DOUBLE
public static final SinglePropertyType BOOLEAN
public static final SinglePropertyType OBJECT
public static SinglePropertyType[] values()
for (SinglePropertyType c : SinglePropertyType.values()) System.out.println(c);
public static SinglePropertyType 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 String getDeclareName()
getDeclareName in interface PropertyTypeCopyright © 2019. All rights reserved.