public enum DType extends Enum<DType>
| Enum Constant and Description |
|---|
BOOL8
Byte wise true non-0/false 0.
|
DATE32
Days since the UNIX epoch
|
DATE64
ms since the UNIX epoch
|
FLOAT32 |
FLOAT64 |
INT16 |
INT32 |
INT64 |
INT8 |
INVALID |
STRING |
STRING_CATEGORY
Strings, but stored on the device with a dictionary for compression.
|
TIMESTAMP
Exact timestamp encoded with int64 since the UNIX epoch (Default unit ms)
|
| Modifier and Type | Method and Description |
|---|---|
static DType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DType INVALID
public static final DType INT8
public static final DType INT16
public static final DType INT32
public static final DType INT64
public static final DType FLOAT32
public static final DType FLOAT64
public static final DType BOOL8
public static final DType DATE32
public static final DType DATE64
public static final DType TIMESTAMP
public static final DType STRING
public static final DType STRING_CATEGORY
public static DType[] values()
for (DType c : DType.values()) System.out.println(c);
public static DType 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 © 2019. All rights reserved.