public static enum Store.PutStatus extends java.lang.Enum<Store.PutStatus>
Enum Constant and Description |
---|
NOOP
New value was dropped
|
PUT
Value was put
|
Modifier and Type | Method and Description |
---|---|
static Store.PutStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Store.PutStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Store.PutStatus PUT
public static final Store.PutStatus NOOP
public static Store.PutStatus[] values()
for (Store.PutStatus c : Store.PutStatus.values()) System.out.println(c);
public static Store.PutStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null