public enum StateServerEventCode extends java.lang.Enum<StateServerEventCode>
Enum Constant and Description |
---|
Dependency
An object is being removed due to a dependency change.
|
EraseBehind
Erase-behind event
|
InvocationWorkerSignal |
InvocationWorkerStop |
Invoke
PMI invoke event from server.
|
LowMemory
An object is about to be deleted by LRU algorithm due to low memory condition.
|
Merge
PMI merge event from server.
|
ObjectTimeout
An object's timeout expired.
|
RefreshAhead
Refresh-ahead event
|
SingleInvoke
SMI invocation request from server
|
WriteBehind
Write-behind event
|
WrongClient |
Modifier and Type | Method and Description |
---|---|
static StateServerEventCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StateServerEventCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateServerEventCode ObjectTimeout
public static final StateServerEventCode LowMemory
public static final StateServerEventCode Dependency
public static final StateServerEventCode Invoke
public static final StateServerEventCode Merge
public static final StateServerEventCode SingleInvoke
public static final StateServerEventCode RefreshAhead
public static final StateServerEventCode WriteBehind
public static final StateServerEventCode EraseBehind
public static final StateServerEventCode InvocationWorkerStop
public static final StateServerEventCode InvocationWorkerSignal
public static final StateServerEventCode WrongClient
public static StateServerEventCode[] values()
for (StateServerEventCode c : StateServerEventCode.values()) System.out.println(c);
public static StateServerEventCode 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