public static enum Column.Kind extends Enum<Column.Kind>
| Enum Constant and Description |
|---|
CLUSTERING |
PARTITION_KEY |
REGULAR |
STATIC |
| Modifier and Type | Method and Description |
|---|---|
static Column.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Column.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Column.Kind PARTITION_KEY
public static final Column.Kind CLUSTERING
public static final Column.Kind REGULAR
public static final Column.Kind STATIC
public static Column.Kind[] values()
for (Column.Kind c : Column.Kind.values()) System.out.println(c);
public static Column.Kind 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 © 2022. All rights reserved.