public enum Action extends Enum<Action>
| Enum Constant and Description |
|---|
CREATED
The entry did not exist and was created.
|
DELETED
The entry existed and was deleted.
|
LOADED
The entry exists and had to be loaded into the cache.
|
NONE
The entry was neither read nor written to.
|
READ
The entry exists, was read, and never mutated.
|
UPDATED
The entry exists and was updated.
|
| Modifier and Type | Method and Description |
|---|---|
static Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action NONE
public static final Action READ
public static final Action CREATED
public static final Action UPDATED
public static final Action LOADED
public static final Action DELETED
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action 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 null