public static enum PropertySchema.PROPERTY_TYPE extends java.lang.Enum<PropertySchema.PROPERTY_TYPE>
| Enum Constant and Description |
|---|
ANYURI |
BOOLEAN |
DATE |
DATETIME |
DECIMAL |
HEXBINARY |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static PropertySchema.PROPERTY_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertySchema.PROPERTY_TYPE[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final PropertySchema.PROPERTY_TYPE STRING
public static final PropertySchema.PROPERTY_TYPE DECIMAL
public static final PropertySchema.PROPERTY_TYPE HEXBINARY
public static final PropertySchema.PROPERTY_TYPE DATETIME
public static final PropertySchema.PROPERTY_TYPE DATE
public static final PropertySchema.PROPERTY_TYPE BOOLEAN
public static final PropertySchema.PROPERTY_TYPE ANYURI
public static PropertySchema.PROPERTY_TYPE[] values()
for (PropertySchema.PROPERTY_TYPE c : PropertySchema.PROPERTY_TYPE.values())
System.out.println(c);
public static PropertySchema.PROPERTY_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