@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum NodeDataType extends Enum<NodeDataType>
Enum Constant and Description |
---|
BOOLEAN |
BOOLEAN_ARRAY |
DOUBLE |
DOUBLE_ARRAY |
FLOAT |
FLOAT_ARRAY |
INT16 |
INT16_ARRAY |
INT32 |
INT32_ARRAY |
INT64 |
INT64_ARRAY |
INT8 |
INT8_ARRAY |
STRING |
STRING_ARRAY |
STRUCT |
STRUCT_ARRAY |
UINT16 |
UINT16_ARRAY |
UINT32 |
UINT32_ARRAY |
UINT64 |
UINT64_ARRAY |
UINT8 |
UINT8_ARRAY |
UNIX_TIMESTAMP |
UNIX_TIMESTAMP_ARRAY |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static NodeDataType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static NodeDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeDataType INT8
public static final NodeDataType UINT8
public static final NodeDataType INT16
public static final NodeDataType UINT16
public static final NodeDataType INT32
public static final NodeDataType UINT32
public static final NodeDataType INT64
public static final NodeDataType UINT64
public static final NodeDataType BOOLEAN
public static final NodeDataType FLOAT
public static final NodeDataType DOUBLE
public static final NodeDataType STRING
public static final NodeDataType UNIX_TIMESTAMP
public static final NodeDataType INT8_ARRAY
public static final NodeDataType UINT8_ARRAY
public static final NodeDataType INT16_ARRAY
public static final NodeDataType UINT16_ARRAY
public static final NodeDataType INT32_ARRAY
public static final NodeDataType UINT32_ARRAY
public static final NodeDataType INT64_ARRAY
public static final NodeDataType UINT64_ARRAY
public static final NodeDataType BOOLEAN_ARRAY
public static final NodeDataType FLOAT_ARRAY
public static final NodeDataType DOUBLE_ARRAY
public static final NodeDataType STRING_ARRAY
public static final NodeDataType UNIX_TIMESTAMP_ARRAY
public static final NodeDataType UNKNOWN
public static final NodeDataType STRUCT
public static final NodeDataType STRUCT_ARRAY
public static NodeDataType[] values()
for (NodeDataType c : NodeDataType.values()) System.out.println(c);
public static NodeDataType 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 nullpublic String toString()
toString
in class Enum<NodeDataType>
public static NodeDataType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.