public static enum Any.ValueType extends java.lang.Enum<Any.ValueType>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DATETIME |
DOUBLE |
LONG |
MAP
The list with the possible value types.
|
SEQ |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static Any.ValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Any.ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Any.ValueType MAP
public static final Any.ValueType SEQ
public static final Any.ValueType STRING
public static final Any.ValueType DOUBLE
public static final Any.ValueType BOOLEAN
public static final Any.ValueType LONG
public static final Any.ValueType DATE
public static final Any.ValueType DATETIME
public static Any.ValueType[] values()
for (Any.ValueType c : Any.ValueType.values()) System.out.println(c);
public static Any.ValueType 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