public static enum ClientPB.Consistency extends Enum<ClientPB.Consistency> implements com.google.protobuf.Internal.EnumLite
Consistency
Consistency defines the expected consistency level for an operation.
| Enum Constant and Description |
|---|
STRONG
STRONG = 0; |
TIMELINE
TIMELINE = 1; |
| Modifier and Type | Field and Description |
|---|---|
static int |
STRONG_VALUE
STRONG = 0; |
static int |
TIMELINE_VALUE
TIMELINE = 1; |
| Modifier and Type | Method and Description |
|---|---|
int |
getNumber() |
static com.google.protobuf.Internal.EnumLiteMap<ClientPB.Consistency> |
internalGetValueMap() |
static ClientPB.Consistency |
valueOf(int value) |
static ClientPB.Consistency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientPB.Consistency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientPB.Consistency STRONG
STRONG = 0;public static final ClientPB.Consistency TIMELINE
TIMELINE = 1;public static final int STRONG_VALUE
STRONG = 0;public static final int TIMELINE_VALUE
TIMELINE = 1;public static ClientPB.Consistency[] values()
for (ClientPB.Consistency c : ClientPB.Consistency.values()) System.out.println(c);
public static ClientPB.Consistency 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.EnumLitepublic static ClientPB.Consistency valueOf(int value)
public static com.google.protobuf.Internal.EnumLiteMap<ClientPB.Consistency> internalGetValueMap()
Copyright © 2010-2017, The Async HBase Authors