public static enum CellData.ColumnType extends Enum<CellData.ColumnType>
| Enum Constant and Description |
|---|
CLUSTERING
A clustering column is used to specifies the order that the data is arranged inside the partition.
|
PARTITION
A partition column is responsible for data distribution across nodes for this table.
|
REGULAR
A regular column is a column that is not a partition or a clustering column.
|
| Modifier and Type | Method and Description |
|---|---|
static CellData.ColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellData.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellData.ColumnType PARTITION
public static final CellData.ColumnType CLUSTERING
public static final CellData.ColumnType REGULAR
public static CellData.ColumnType[] values()
for (CellData.ColumnType c : CellData.ColumnType.values()) System.out.println(c);
public static CellData.ColumnType 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 © 2020 JBoss by Red Hat. All rights reserved.