public static enum ServerSessionEventDispatcher.EventType extends Enum<ServerSessionEventDispatcher.EventType>
| Enum Constant and Description |
|---|
session_created
A session was created.
|
session_destroyed
A session was destroyed
|
| Modifier and Type | Method and Description |
|---|---|
static ServerSessionEventDispatcher.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerSessionEventDispatcher.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerSessionEventDispatcher.EventType session_created
public static final ServerSessionEventDispatcher.EventType session_destroyed
public static ServerSessionEventDispatcher.EventType[] values()
for (ServerSessionEventDispatcher.EventType c : ServerSessionEventDispatcher.EventType.values()) System.out.println(c);
public static ServerSessionEventDispatcher.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–2019 Ignite Realtime. All rights reserved.