public enum ColumnDescriptorType extends java.lang.Enum<ColumnDescriptorType>
| Enum Constant and Description |
|---|
BOOLEAN |
NUMBER |
STRING |
UNIX_TIMESTAMP_UTC |
| Modifier and Type | Method and Description |
|---|---|
static ColumnDescriptorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnDescriptorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnDescriptorType STRING
public static final ColumnDescriptorType NUMBER
public static final ColumnDescriptorType BOOLEAN
@SerializedName(value="unixTimestampUTC") public static final ColumnDescriptorType UNIX_TIMESTAMP_UTC
public static ColumnDescriptorType[] values()
for (ColumnDescriptorType c : ColumnDescriptorType.values()) System.out.println(c);
public static ColumnDescriptorType 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