public static enum DeleteHBase.DeleteMarker extends Enum<DeleteHBase.DeleteMarker>
Enum Constant and Description |
---|
Delete
Delete a specific cell version
|
DeleteColumn
Delete past versions of a cell
|
DeleteFamily
Delete past versions of all cells in row
|
Modifier and Type | Method and Description |
---|---|
static DeleteHBase.DeleteMarker |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeleteHBase.DeleteMarker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeleteHBase.DeleteMarker Delete
public static final DeleteHBase.DeleteMarker DeleteColumn
public static final DeleteHBase.DeleteMarker DeleteFamily
public static DeleteHBase.DeleteMarker[] values()
for (DeleteHBase.DeleteMarker c : DeleteHBase.DeleteMarker.values()) System.out.println(c);
public static DeleteHBase.DeleteMarker 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 Actian Corporation. All rights reserved.