public static enum Attribute.DataType extends java.lang.Enum<Attribute.DataType>
| Enum Constant and Description |
|---|
BOOLEAN
Boolean datatype.
|
BOOLEAN_ARR
Boolean array.
|
DOUBLE
Double.
|
DOUBLE_ARR
Double array.
|
FLOAT
Float.
|
FLOAT_ARR
Float array.
|
INT16
INT16.
|
INT16_ARR
INT16 array.
|
INT32
INT32.
|
INT32_ARR
INT32 array.
|
INT64
INT64.
|
INT64_ARR
INT64 array.
|
INT8
INT8.
|
INT8_ARR
INT8 array.
|
JSON
Json.
|
JSON_ARR
Json array.
|
STRING
String.
|
STRING_ARR
String array.
|
UINT16
UINT16.
|
UINT16_ARR
UINT16 array.
|
UINT32
UINT32.
|
UINT32_ARR
UINT32 array.
|
UINT64
UINT64.
|
UINT64_ARR
UINT64 array.
|
UINT8
UINT8.
|
UINT8_ARR
UINT* array.
|
| Modifier and Type | Method and Description |
|---|---|
DataTypeFormatter.SimpleDataType |
toSimpleDataType()
This function summarizes the data type of attribute value.
|
static Attribute.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Attribute.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attribute.DataType BOOLEAN
public static final Attribute.DataType BOOLEAN_ARR
public static final Attribute.DataType STRING
public static final Attribute.DataType STRING_ARR
public static final Attribute.DataType UINT8
public static final Attribute.DataType UINT8_ARR
public static final Attribute.DataType UINT16
public static final Attribute.DataType UINT16_ARR
public static final Attribute.DataType UINT32
public static final Attribute.DataType UINT32_ARR
public static final Attribute.DataType UINT64
public static final Attribute.DataType UINT64_ARR
public static final Attribute.DataType INT8
public static final Attribute.DataType INT8_ARR
public static final Attribute.DataType INT16
public static final Attribute.DataType INT16_ARR
public static final Attribute.DataType INT32
public static final Attribute.DataType INT32_ARR
public static final Attribute.DataType INT64
public static final Attribute.DataType INT64_ARR
public static final Attribute.DataType FLOAT
public static final Attribute.DataType FLOAT_ARR
public static final Attribute.DataType DOUBLE
public static final Attribute.DataType DOUBLE_ARR
public static final Attribute.DataType JSON
public static final Attribute.DataType JSON_ARR
public static Attribute.DataType[] values()
for (Attribute.DataType c : Attribute.DataType.values()) System.out.println(c);
public static Attribute.DataType 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 nullpublic DataTypeFormatter.SimpleDataType toSimpleDataType()