public enum CacheEventType extends java.lang.Enum<CacheEventType>
AbstractHazelcastMessageProducer| Enum Constant and Description |
|---|
ADDED |
CLEAR_ALL |
EVICT_ALL |
EVICTED |
REMOVED |
UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static CacheEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CacheEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheEventType ADDED
public static final CacheEventType REMOVED
public static final CacheEventType UPDATED
public static final CacheEventType EVICTED
public static final CacheEventType EVICT_ALL
public static final CacheEventType CLEAR_ALL
public static CacheEventType[] values()
for (CacheEventType c : CacheEventType.values()) System.out.println(c);
public static CacheEventType 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