public static enum RowUpdateChange.Type extends Enum<RowUpdateChange.Type>
| 枚举常量和说明 |
|---|
DELETE
Represents deleting a specific version of this Column, where the timestamp of the version equals
Column.timestamp. |
DELETE_ALL
Represents deleting all version values of this Column.
|
INCREMENT
Represents performing an atomic add on the latest version of this column.
|
PUT
Represents the value of a specific version written to this Column.
|
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 - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All Rights Reserved.