public static enum SessionListener.SessionDestroyedReason extends Enum<SessionListener.SessionDestroyedReason>
Enum Constant and Description |
---|
INVALIDATED |
TIMEOUT |
UNDEPLOY |
Modifier and Type | Method and Description |
---|---|
static SessionListener.SessionDestroyedReason | valueOf(String name) Returns the enum constant of this type with the specified name. |
static SessionListener.SessionDestroyedReason[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final SessionListener.SessionDestroyedReason INVALIDATED
public static final SessionListener.SessionDestroyedReason TIMEOUT
public static final SessionListener.SessionDestroyedReason UNDEPLOY
public static SessionListener.SessionDestroyedReason[] values()
for (SessionListener.SessionDestroyedReason c : SessionListener.SessionDestroyedReason.values()) System.out.println(c);
public static SessionListener.SessionDestroyedReason 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 © 2020 JBoss by Red Hat. All rights reserved.