public static enum EventHandler.EventType extends java.lang.Enum<EventHandler.EventType>
| Enum Constant and Description |
|---|
ACCESS_TOKEN_PAYLOAD_UPDATED |
REFRESH_SESSION |
SESSION_CREATED |
SIGN_OUT |
UNAUTHORISED |
| Modifier and Type | Method and Description |
|---|---|
static EventHandler.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventHandler.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventHandler.EventType SIGN_OUT
public static final EventHandler.EventType REFRESH_SESSION
public static final EventHandler.EventType SESSION_CREATED
public static final EventHandler.EventType ACCESS_TOKEN_PAYLOAD_UPDATED
public static final EventHandler.EventType UNAUTHORISED
public static EventHandler.EventType[] values()
for (EventHandler.EventType c : EventHandler.EventType.values()) System.out.println(c);
public static EventHandler.EventType 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