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