public static enum ColumnDefinition.Type extends java.lang.Enum<ColumnDefinition.Type>
Enum Constant and Description |
---|
CLUSTERING_KEY |
COMPACT_VALUE |
PARTITION_KEY |
REGULAR |
STATIC |
Modifier and Type | Method and Description |
---|---|
static ColumnDefinition.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnDefinition.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnDefinition.Type PARTITION_KEY
public static final ColumnDefinition.Type CLUSTERING_KEY
public static final ColumnDefinition.Type REGULAR
public static final ColumnDefinition.Type COMPACT_VALUE
public static final ColumnDefinition.Type STATIC
public static ColumnDefinition.Type[] values()
for (ColumnDefinition.Type c : ColumnDefinition.Type.values()) System.out.println(c);
public static ColumnDefinition.Type 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 nullCopyright © 2014 The Apache Software Foundation