public static enum RowUpdateChange.Type extends Enum<RowUpdateChange.Type>
枚举常量和说明 |
---|
DELETE
代表删除该Column的某个特定版本,版本号的时间戳等于
Column.timestamp 。 |
DELETE_ALL
代表删除该Column的所有版本的值。
|
PUT
代表写入该Column的某个特定版本的值。
|
public static final RowUpdateChange.Type PUT
public static final RowUpdateChange.Type DELETE
Column.timestamp
。public static final RowUpdateChange.Type DELETE_ALL
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 © 2016. All Rights Reserved.