public static enum NamedCacheObjectExpiredEventArgs.NamedCacheEventCode extends java.lang.Enum<NamedCacheObjectExpiredEventArgs.NamedCacheEventCode>
| Enum Constant and Description |
|---|
Dependency
An object is being removed due to a dependency change.
|
LowMemory
A preemptable object was removed from memory due to a low memory condition.
|
ObjectTimeout
An object's timeout expired.
|
| Modifier and Type | Method and Description |
|---|---|
static NamedCacheObjectExpiredEventArgs.NamedCacheEventCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NamedCacheObjectExpiredEventArgs.NamedCacheEventCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamedCacheObjectExpiredEventArgs.NamedCacheEventCode LowMemory
public static final NamedCacheObjectExpiredEventArgs.NamedCacheEventCode ObjectTimeout
public static final NamedCacheObjectExpiredEventArgs.NamedCacheEventCode Dependency
public static NamedCacheObjectExpiredEventArgs.NamedCacheEventCode[] values()
for (NamedCacheObjectExpiredEventArgs.NamedCacheEventCode c : NamedCacheObjectExpiredEventArgs.NamedCacheEventCode.values()) System.out.println(c);
public static NamedCacheObjectExpiredEventArgs.NamedCacheEventCode 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