public enum PropertyValueType extends Enum<PropertyValueType>
Enum Constant and Description |
---|
BINARY
Binary type
|
BOOLEAN
Boolean type |
DATE
Date type |
DOUBLE
Double type |
INTEGER
Integer type |
LONG
Long type |
REFERENCE
reference type
|
STRING
String type |
UNDEFINED
undefined type
|
Modifier and Type | Method and Description |
---|---|
static PropertyValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyValueType BINARY
public static final PropertyValueType STRING
String
typepublic static final PropertyValueType LONG
Long
typepublic static final PropertyValueType INTEGER
Integer
typepublic static final PropertyValueType DOUBLE
Double
typepublic static final PropertyValueType BOOLEAN
Boolean
typepublic static final PropertyValueType DATE
Date
typepublic static final PropertyValueType REFERENCE
public static final PropertyValueType UNDEFINED
public static PropertyValueType[] values()
for (PropertyValueType c : PropertyValueType.values()) System.out.println(c);
public static PropertyValueType 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 nullCopyright © 2013–2019. All rights reserved.