public static enum CellPB.CellType extends Enum<CellPB.CellType> implements com.google.protobuf.Internal.EnumLite
CellType
The type of the key in a Cell
Enum Constant and Description |
---|
DELETE
DELETE = 8; |
DELETE_COLUMN
DELETE_COLUMN = 12; |
DELETE_FAMILY
DELETE_FAMILY = 14; |
MAXIMUM
MAXIMUM = 255; |
MINIMUM
MINIMUM = 0; |
PUT
PUT = 4; |
Modifier and Type | Field and Description |
---|---|
static int |
DELETE_COLUMN_VALUE
DELETE_COLUMN = 12; |
static int |
DELETE_FAMILY_VALUE
DELETE_FAMILY = 14; |
static int |
DELETE_VALUE
DELETE = 8; |
static int |
MAXIMUM_VALUE
MAXIMUM = 255; |
static int |
MINIMUM_VALUE
MINIMUM = 0; |
static int |
PUT_VALUE
PUT = 4; |
Modifier and Type | Method and Description |
---|---|
int |
getNumber() |
static com.google.protobuf.Internal.EnumLiteMap<CellPB.CellType> |
internalGetValueMap() |
static CellPB.CellType |
valueOf(int value) |
static CellPB.CellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellPB.CellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellPB.CellType MINIMUM
MINIMUM = 0;
public static final CellPB.CellType PUT
PUT = 4;
public static final CellPB.CellType DELETE
DELETE = 8;
public static final CellPB.CellType DELETE_COLUMN
DELETE_COLUMN = 12;
public static final CellPB.CellType DELETE_FAMILY
DELETE_FAMILY = 14;
public static final CellPB.CellType MAXIMUM
MAXIMUM = 255;
MAXIMUM is used when searching; you look from maximum on down.
public static final int MINIMUM_VALUE
MINIMUM = 0;
public static final int PUT_VALUE
PUT = 4;
public static final int DELETE_VALUE
DELETE = 8;
public static final int DELETE_COLUMN_VALUE
DELETE_COLUMN = 12;
public static final int DELETE_FAMILY_VALUE
DELETE_FAMILY = 14;
public static final int MAXIMUM_VALUE
MAXIMUM = 255;
MAXIMUM is used when searching; you look from maximum on down.
public static CellPB.CellType[] values()
for (CellPB.CellType c : CellPB.CellType.values()) System.out.println(c);
public static CellPB.CellType 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 nullpublic final int getNumber()
getNumber
in interface com.google.protobuf.Internal.EnumLite
public static CellPB.CellType valueOf(int value)
public static com.google.protobuf.Internal.EnumLiteMap<CellPB.CellType> internalGetValueMap()
Copyright © 2010-2017, The Async HBase Authors