public static enum RecordColumn.ColumnType extends Enum<RecordColumn.ColumnType>
| Enum Constant and Description |
|---|
DELETE_ALL_VERSION
DELETE_ALL_VERSION类型
表示删除该列的全部版本
|
DELETE_ONE_VERSION
DELETE_ONE_VERSION类型
表示删除该列的某一版本
|
PUT
PUT类型
表示写入该列
|
| Modifier and Type | Method and Description |
|---|---|
static RecordColumn.ColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordColumn.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordColumn.ColumnType PUT
public static final RecordColumn.ColumnType DELETE_ONE_VERSION
public static final RecordColumn.ColumnType DELETE_ALL_VERSION
public static RecordColumn.ColumnType[] values()
for (RecordColumn.ColumnType c : RecordColumn.ColumnType.values()) System.out.println(c);
public static RecordColumn.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 © 2024. All Rights Reserved.