public enum EntryEventType extends Enum<EntryEventType>
| Enum Constant and Description |
|---|
ADDED |
CLEAR_ALL |
EVICT_ALL |
EVICTED |
EXPIRED |
INVALIDATION |
MERGED |
REMOVED |
UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static EntryEventType |
getByType(int typeId) |
int |
getType() |
static EntryEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntryEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryEventType ADDED
public static final EntryEventType REMOVED
public static final EntryEventType UPDATED
public static final EntryEventType EVICTED
public static final EntryEventType EVICT_ALL
public static final EntryEventType CLEAR_ALL
public static final EntryEventType MERGED
public static final EntryEventType EXPIRED
public static final EntryEventType INVALIDATION
public static EntryEventType[] values()
for (EntryEventType c : EntryEventType.values()) System.out.println(c);
public static EntryEventType 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 nullpublic int getType()
public static EntryEventType getByType(int typeId)
typeId or null if there is no match.Copyright © 2018. All Rights Reserved.