public static enum Cell.Type extends Enum<Cell.Type>
KeyValue.Type
.Enum Constant and Description |
---|
Delete |
DeleteColumn |
DeleteFamily |
DeleteFamilyVersion |
Put |
Modifier and Type | Field and Description |
---|---|
private byte |
code |
private static Cell.Type[] |
CODE_ARRAY |
Modifier and Type | Method and Description |
---|---|
byte |
getCode() |
static Cell.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cell.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cell.Type DeleteFamilyVersion
public static final Cell.Type DeleteColumn
public static final Cell.Type DeleteFamily
private final byte code
private static final Cell.Type[] CODE_ARRAY
public static Cell.Type[] values()
for (Cell.Type c : Cell.Type.values()) System.out.println(c);
public static Cell.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 nullpublic byte getCode()
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.