public static enum MapEntryUpdateResult.Status extends Enum<MapEntryUpdateResult.Status>
| Enum Constant and Description |
|---|
NOOP
Indicates a noop i.e.
|
OK
Indicates a successful update.
|
PRECONDITION_FAILED
Indicates a failed update due to a precondition check failure.
|
WRITE_LOCK
Indicates a failed update due to a write lock.
|
| Modifier and Type | Method and Description |
|---|---|
static MapEntryUpdateResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapEntryUpdateResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapEntryUpdateResult.Status OK
public static final MapEntryUpdateResult.Status NOOP
public static final MapEntryUpdateResult.Status WRITE_LOCK
public static final MapEntryUpdateResult.Status PRECONDITION_FAILED
public static MapEntryUpdateResult.Status[] values()
for (MapEntryUpdateResult.Status c : MapEntryUpdateResult.Status.values()) System.out.println(c);
public static MapEntryUpdateResult.Status 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 © 2016. All rights reserved.