public static enum RowUpdateChange.Type extends Enum<RowUpdateChange.Type>
| Enum Constant and Description |
|---|
DELETE
代表删除该Column的某个特定版本,版本号的时间戳等于
Column.timestamp。 |
DELETE_ALL
代表删除该Column的所有版本的值。
|
INCREMENT
代表对该column的最新版本执行原子加。
|
PUT
代表写入该Column的某个特定版本的值。
|
| Modifier and Type | Method and Description |
|---|---|
static RowUpdateChange.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowUpdateChange.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowUpdateChange.Type PUT
public static final RowUpdateChange.Type DELETE
Column.timestamp。public static final RowUpdateChange.Type DELETE_ALL
public static final RowUpdateChange.Type INCREMENT
public static RowUpdateChange.Type[] values()
for (RowUpdateChange.Type c : RowUpdateChange.Type.values()) System.out.println(c);
public static RowUpdateChange.Type 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.