public static enum Column.Type extends Enum<Column.Type>
| Enum Constant and Description |
|---|
BLOB |
DOUBLE |
INT64 |
STRING |
SYMBOL |
TIMESTAMP |
UNINITIALIZED |
| Modifier and Type | Field and Description |
|---|---|
protected int |
value |
| Modifier and Type | Method and Description |
|---|---|
int |
asInt() |
Value.Type |
asValueType() |
static Column.Type |
fromInt(int type) |
static Column.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Column.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Column.Type UNINITIALIZED
public static final Column.Type DOUBLE
public static final Column.Type BLOB
public static final Column.Type STRING
public static final Column.Type INT64
public static final Column.Type TIMESTAMP
public static final Column.Type SYMBOL
public static Column.Type[] values()
for (Column.Type c : Column.Type.values()) System.out.println(c);
public static Column.Type 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 int asInt()
public Value.Type asValueType()
public static Column.Type fromInt(int type)
Copyright © 2022. All rights reserved.