Enum Constant and Description |
---|
CREATED
Represents a new
cache entry being installed for a given key |
EVICTED
Represents a
cache entry being evicted |
EXPIRED
Represents a
cache entry expiring |
REMOVED
Represents a
cache entry being removed |
UPDATED
Represents an existing
cache entry being updated for a given key |
Modifier and Type | Method and Description |
---|---|
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType EVICTED
cache entry
being evictedpublic static final EventType EXPIRED
cache entry
expiringpublic static final EventType REMOVED
cache entry
being removedpublic static final EventType CREATED
cache entry
being installed for a given keypublic static final EventType UPDATED
cache entry
being updated for a given keypublic static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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