public static enum TableSchema.TypeName extends java.lang.Enum<TableSchema.TypeName>
Enum Constant and Description |
---|
ARRAY |
BOOL |
DATE |
DATETIME |
ENUM16 |
ENUM8 |
FIXEDSTRING |
FLOAT32 |
FLOAT64 |
INT16 |
INT32 |
INT64 |
INT8 |
STRING |
TUPLE |
UINT16 |
UINT32 |
UINT64 |
UINT8 |
Modifier and Type | Method and Description |
---|---|
static TableSchema.TypeName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableSchema.TypeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableSchema.TypeName DATE
public static final TableSchema.TypeName DATETIME
public static final TableSchema.TypeName ENUM8
public static final TableSchema.TypeName ENUM16
public static final TableSchema.TypeName FIXEDSTRING
public static final TableSchema.TypeName FLOAT32
public static final TableSchema.TypeName FLOAT64
public static final TableSchema.TypeName INT8
public static final TableSchema.TypeName INT16
public static final TableSchema.TypeName INT32
public static final TableSchema.TypeName INT64
public static final TableSchema.TypeName STRING
public static final TableSchema.TypeName UINT8
public static final TableSchema.TypeName UINT16
public static final TableSchema.TypeName UINT32
public static final TableSchema.TypeName UINT64
public static final TableSchema.TypeName ARRAY
public static final TableSchema.TypeName BOOL
public static final TableSchema.TypeName TUPLE
public static TableSchema.TypeName[] values()
for (TableSchema.TypeName c : TableSchema.TypeName.values()) System.out.println(c);
public static TableSchema.TypeName 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 null