public enum ValueType extends Enum<ValueType>
Enum Constant and Description |
---|
ARRAY |
BCD |
BINARY |
BOOL |
CUSTOM |
DOUBLE |
EXTERNAL |
ILLEGAL |
INT |
MAX_KEY |
MIN_KEY |
NONE |
NULL |
OBJECT |
SMALLINT |
STRING |
UINT |
UTC_DATE |
VPACK |
Modifier and Type | Method and Description |
---|---|
static ValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueType NONE
public static final ValueType ILLEGAL
public static final ValueType NULL
public static final ValueType BOOL
public static final ValueType ARRAY
public static final ValueType OBJECT
public static final ValueType DOUBLE
public static final ValueType UTC_DATE
public static final ValueType EXTERNAL
public static final ValueType MIN_KEY
public static final ValueType MAX_KEY
public static final ValueType INT
public static final ValueType UINT
public static final ValueType SMALLINT
public static final ValueType STRING
public static final ValueType BINARY
public static final ValueType BCD
public static final ValueType CUSTOM
public static final ValueType VPACK
public static ValueType[] values()
for (ValueType c : ValueType.values()) System.out.println(c);
public static ValueType 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 © 2016 ArangoDB GmbH. All rights reserved.