public enum EntryEventType extends Enum<EntryEventType>
Enum Constant and Description |
---|
ADDED
Fired if an entry is added.
|
CLEAR_ALL
Fired if all entries are cleared.
|
EVICT_ALL
Fired if all entries are evicted.
|
EVICTED
Fired if an entry is evicted.
|
EXPIRED
Fired if an entry is expired.
|
INVALIDATION
Fired if an entry is invalidated.
|
LOADED
Fired if an entry is loaded.
|
MERGED
Fired if an entry is merged after a network partition.
|
REMOVED
Fired if an entry is removed.
|
UPDATED
Fired if an entry is 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 EXPIRED
public static final EntryEventType EVICT_ALL
public static final EntryEventType CLEAR_ALL
public static final EntryEventType MERGED
public static final EntryEventType INVALIDATION
public static final EntryEventType LOADED
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 matchCopyright © 2020 Hazelcast, Inc.. All rights reserved.