public static enum SessionStateChangedEvent.ChangeType extends java.lang.Enum<SessionStateChangedEvent.ChangeType>
Enum Constant and Description |
---|
SESSION_ENDED
When this
SessionStateChangedEvent
represents a newly ended session. |
SESSION_STARTED
When this
SessionStateChangedEvent
represents a newly started session. |
Modifier and Type | Method and Description |
---|---|
static SessionStateChangedEvent.ChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionStateChangedEvent.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionStateChangedEvent.ChangeType SESSION_STARTED
SessionStateChangedEvent
represents a newly started session.public static final SessionStateChangedEvent.ChangeType SESSION_ENDED
SessionStateChangedEvent
represents a newly ended session.public static SessionStateChangedEvent.ChangeType[] values()
for (SessionStateChangedEvent.ChangeType c : SessionStateChangedEvent.ChangeType.values()) System.out.println(c);
public static SessionStateChangedEvent.ChangeType 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