public enum SessionTerminationReason extends Enum<SessionTerminationReason>
| Enum Constant and Description | 
|---|
| BROWSER_TIMEOUT | 
| CLIENT_GONE | 
| CLIENT_STOPPED_SESSION | 
| CREATIONFAILED | 
| FORWARDING_TO_NODE_FAILED | 
| ORPHAN | 
| PROXY_REREGISTRATION | 
| SO_TIMEOUT | 
| TIMEOUT | 
| Modifier and Type | Method and Description | 
|---|---|
| static SessionTerminationReason | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SessionTerminationReason[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SessionTerminationReason TIMEOUT
public static final SessionTerminationReason BROWSER_TIMEOUT
public static final SessionTerminationReason ORPHAN
public static final SessionTerminationReason CLIENT_STOPPED_SESSION
public static final SessionTerminationReason CLIENT_GONE
public static final SessionTerminationReason FORWARDING_TO_NODE_FAILED
public static final SessionTerminationReason CREATIONFAILED
public static final SessionTerminationReason PROXY_REREGISTRATION
public static final SessionTerminationReason SO_TIMEOUT
public static SessionTerminationReason[] values()
for (SessionTerminationReason c : SessionTerminationReason.values()) System.out.println(c);
public static SessionTerminationReason 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 © 2013. All rights reserved.