public enum DataType extends Enum<DataType>
| Enum Constant and Description |
|---|
BOOL |
DATE |
DECIMAL |
DOUBLE |
FLOAT |
INT32 |
INT64 |
INT96 |
INTERVAL |
LIST |
MAP |
TIME_MICROS |
TIME_MILLIS |
TIMESTAMP_MICROS |
TIMESTAMP_MILLIS |
UTF8 |
| Modifier and Type | Method and Description |
|---|---|
static DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType BOOL
public static final DataType INT64
public static final DataType UTF8
public static final DataType DOUBLE
public static final DataType DATE
public static final DataType DECIMAL
public static final DataType TIME_MILLIS
public static final DataType TIME_MICROS
public static final DataType TIMESTAMP_MILLIS
public static final DataType TIMESTAMP_MICROS
public static final DataType LIST
public static final DataType MAP
public static final DataType INTERVAL
public static final DataType FLOAT
public static final DataType INT32
public static final DataType INT96
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType 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 © 2024. All Rights Reserved.