public enum ParsedDataType extends Enum<ParsedDataType>
| Enum Constant and Description |
|---|
AsciiType |
BooleanType |
BytesType |
CounterColumnType |
DateType |
DoubleType |
FloatType |
IntegerType |
LexicalUUIDType |
LongType |
TimeUUIDType |
UTF8Type |
UUIDType |
| Modifier and Type | Method and Description |
|---|---|
static ParsedDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParsedDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParsedDataType BytesType
public static final ParsedDataType IntegerType
public static final ParsedDataType LexicalUUIDType
public static final ParsedDataType LongType
public static final ParsedDataType TimeUUIDType
public static final ParsedDataType UTF8Type
public static final ParsedDataType UUIDType
public static final ParsedDataType CounterColumnType
public static final ParsedDataType AsciiType
public static final ParsedDataType BooleanType
public static final ParsedDataType DateType
public static final ParsedDataType DoubleType
public static final ParsedDataType FloatType
public static ParsedDataType[] values()
for (ParsedDataType c : ParsedDataType.values()) System.out.println(c);
public static ParsedDataType 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 © 2014. All Rights Reserved.