public static enum CacheEventNotificationMsg.EventType extends Enum<CacheEventNotificationMsg.EventType>
| Enum Constant and Description |
|---|
ELEMENT_EVICTED |
ELEMENT_EXPIRED |
ELEMENT_PUT |
ELEMENT_REMOVED |
ELEMENT_UPDATED |
REMOVEALL |
| Modifier and Type | Method and Description |
|---|---|
static CacheEventNotificationMsg.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheEventNotificationMsg.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheEventNotificationMsg.EventType ELEMENT_REMOVED
public static final CacheEventNotificationMsg.EventType ELEMENT_PUT
public static final CacheEventNotificationMsg.EventType ELEMENT_UPDATED
public static final CacheEventNotificationMsg.EventType ELEMENT_EXPIRED
public static final CacheEventNotificationMsg.EventType ELEMENT_EVICTED
public static final CacheEventNotificationMsg.EventType REMOVEALL
public static CacheEventNotificationMsg.EventType[] values()
for (CacheEventNotificationMsg.EventType c : CacheEventNotificationMsg.EventType.values()) System.out.println(c);
public static CacheEventNotificationMsg.EventType 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 © 2003–2024 Terracotta, Inc.. All rights reserved.