|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DataType>
org.cassandraunit.dataset.xml.DataType
public enum DataType
Java class for DataType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DataType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="BytesType"/>
<enumeration value="IntegerType"/>
<enumeration value="LexicalUUIDType"/>
<enumeration value="LongType"/>
<enumeration value="TimeUUIDType"/>
<enumeration value="UTF8Type"/>
<enumeration value="UUIDType"/>
<enumeration value="CounterColumnType"/>
</restriction>
</simpleType>
| Enum Constant Summary | |
|---|---|
BYTES_TYPE
|
|
COUNTER_COLUMN_TYPE
|
|
INTEGER_TYPE
|
|
LEXICAL_UUID_TYPE
|
|
LONG_TYPE
|
|
TIME_UUID_TYPE
|
|
UTF_8_TYPE
|
|
UUID_TYPE
|
|
| Method Summary | |
|---|---|
static DataType |
fromValue(String v)
|
String |
value()
|
static DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DataType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DataType BYTES_TYPE
public static final DataType INTEGER_TYPE
public static final DataType LEXICAL_UUID_TYPE
public static final DataType LONG_TYPE
public static final DataType TIME_UUID_TYPE
public static final DataType UTF_8_TYPE
public static final DataType UUID_TYPE
public static final DataType COUNTER_COLUMN_TYPE
| Method Detail |
|---|
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String value()
public static DataType fromValue(String v)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||