public enum MutableEntryOperation extends Enum<MutableEntryOperation>
RICachedValue as a result of
actions performed on a MutableEntry.| Enum Constant and Description |
|---|
ACCESS
Access an existing
RICachedValue. |
CREATE
Create a new
RICachedValue. |
LOAD
Loaded a new
RICachedValue. |
NONE
Don't perform any operations on the
RICachedValue. |
REMOVE
Remove the
RICachedValue (and thus the Cache Entry). |
UPDATE
Update the
RICachedValue. |
| Modifier and Type | Method and Description |
|---|---|
static MutableEntryOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutableEntryOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MutableEntryOperation NONE
RICachedValue.public static final MutableEntryOperation ACCESS
RICachedValue.public static final MutableEntryOperation CREATE
RICachedValue.public static final MutableEntryOperation LOAD
RICachedValue.public static final MutableEntryOperation REMOVE
RICachedValue (and thus the Cache Entry).public static final MutableEntryOperation UPDATE
RICachedValue.public static MutableEntryOperation[] values()
for (MutableEntryOperation c : MutableEntryOperation.values()) System.out.println(c);
public static MutableEntryOperation 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 © 2019. All rights reserved.