public static enum Field.Type.Value extends Enum<Field.Type.Value>
| Enum Constant and Description |
|---|
BOOLEAN |
FLOAT |
INTEGER |
RECORD |
STRING |
TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
static Field.Type.Value |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Field.Type.Value[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Field.Type.Value STRING
public static final Field.Type.Value INTEGER
public static final Field.Type.Value FLOAT
public static final Field.Type.Value BOOLEAN
public static final Field.Type.Value TIMESTAMP
public static final Field.Type.Value RECORD
public static Field.Type.Value[] values()
for (Field.Type.Value c : Field.Type.Value.values()) System.out.println(c);
public static Field.Type.Value 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 © 2016 Google. All rights reserved.