com.sap.conn.jco.ext
Enum SessionException.Type

java.lang.Object
  extended by java.lang.Enum<SessionException.Type>
      extended by com.sap.conn.jco.ext.SessionException.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SessionException.Type>
Enclosing class:
SessionException

public static enum SessionException.Type
extends java.lang.Enum<SessionException.Type>

An enumeration for describing the situation when a SessionException is thrown.


Enum Constant Summary
CREATE_SESSION
          Session creation has been triggered.
DESTROY_SESSION
          Session destroy has been triggered.
PASSIVATE_SESSION
          Session passivation has been triggered.
RESTORE_SESSION
          Session restore has been triggered.
 
Method Summary
 int getGroup()
          Provides the JCoException group associated with the enum value
 java.lang.String getKey()
          Provides the JCoException key associated with the enum value
static SessionException.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SessionException.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CREATE_SESSION

public static final SessionException.Type CREATE_SESSION
Session creation has been triggered.


PASSIVATE_SESSION

public static final SessionException.Type PASSIVATE_SESSION
Session passivation has been triggered.


RESTORE_SESSION

public static final SessionException.Type RESTORE_SESSION
Session restore has been triggered.


DESTROY_SESSION

public static final SessionException.Type DESTROY_SESSION
Session destroy has been triggered.

Method Detail

values

public static SessionException.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SessionException.Type c : SessionException.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SessionException.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getGroup

public int getGroup()
Provides the JCoException group associated with the enum value


getKey

public java.lang.String getKey()
Provides the JCoException key associated with the enum value



Copyright © 2008-2014 SAP AG. All Rights Reserved.