public enum GenericTypeEnum extends Enum<GenericTypeEnum>
| Enum Constant and Description |
|---|
ASCII_TYPE |
BOOLEAN_TYPE |
BYTES_TYPE |
COMPOSITE_TYPE |
COUNTER_TYPE |
DATE_TYPE |
DOUBLE_TYPE |
FLOAT_TYPE |
INTEGER_TYPE |
LEXICAL_UUID_TYPE |
LONG_TYPE |
TIME_UUID_TYPE |
UTF_8_TYPE |
UUID_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static GenericTypeEnum |
fromValue(String v) |
String |
toString() |
String |
value() |
static GenericTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericTypeEnum ASCII_TYPE
public static final GenericTypeEnum BOOLEAN_TYPE
public static final GenericTypeEnum BYTES_TYPE
public static final GenericTypeEnum COUNTER_TYPE
public static final GenericTypeEnum DATE_TYPE
public static final GenericTypeEnum DOUBLE_TYPE
public static final GenericTypeEnum FLOAT_TYPE
public static final GenericTypeEnum INTEGER_TYPE
public static final GenericTypeEnum LEXICAL_UUID_TYPE
public static final GenericTypeEnum LONG_TYPE
public static final GenericTypeEnum TIME_UUID_TYPE
public static final GenericTypeEnum UTF_8_TYPE
public static final GenericTypeEnum UUID_TYPE
public static final GenericTypeEnum COMPOSITE_TYPE
public static GenericTypeEnum[] values()
for (GenericTypeEnum c : GenericTypeEnum.values()) System.out.println(c);
public static GenericTypeEnum 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 String value()
public static GenericTypeEnum fromValue(String v)
public String toString()
toString in class Enum<GenericTypeEnum>Copyright © 2014. All Rights Reserved.