public static enum Value.Type extends Enum<Value.Type>
Value.type()| Enum Constant and Description |
|---|
ARRAY_VALUES |
BIG_INT_VALUE |
BIT_VALUE |
BLOB_VALUE |
DOUBLE_VALUE |
INT_VALUE |
IS_NULL |
REAL_VALUE |
STRING_VALUE |
STRUCT_VALUE |
UNKNOWN_TO_SDK_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static Value.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Value.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Value.Type IS_NULL
public static final Value.Type BIT_VALUE
public static final Value.Type BIG_INT_VALUE
public static final Value.Type INT_VALUE
public static final Value.Type DOUBLE_VALUE
public static final Value.Type REAL_VALUE
public static final Value.Type STRING_VALUE
public static final Value.Type BLOB_VALUE
public static final Value.Type ARRAY_VALUES
public static final Value.Type STRUCT_VALUE
public static final Value.Type UNKNOWN_TO_SDK_VERSION
public static Value.Type[] values()
for (Value.Type c : Value.Type.values()) System.out.println(c);
public static Value.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 nullCopyright © 2022. All rights reserved.