com.sap.conn.jco.server
Enum JCoServerState

java.lang.Object
  extended by java.lang.Enum<JCoServerState>
      extended by com.sap.conn.jco.server.JCoServerState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<JCoServerState>

public enum JCoServerState
extends java.lang.Enum<JCoServerState>

JCoServerState reflects the possible states of a JCoServer.


Enum Constant Summary
ALIVE
          Flag which indicates that the server is listening, i.e.
DEAD
          Flag which indicates that no connections could be registered or all are broken
STARTED
          Flag which is being set if the server has been started
STOPPED
          Flag which indicates that the server was stopped
STOPPING
          Flag which indicates that the server is being stopped
 
Method Summary
static JCoServerState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JCoServerState[] 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

STARTED

public static final JCoServerState STARTED
Flag which is being set if the server has been started


DEAD

public static final JCoServerState DEAD
Flag which indicates that no connections could be registered or all are broken


ALIVE

public static final JCoServerState ALIVE
Flag which indicates that the server is listening, i.e. at least 1 connection is registered


STOPPING

public static final JCoServerState STOPPING
Flag which indicates that the server is being stopped


STOPPED

public static final JCoServerState STOPPED
Flag which indicates that the server was stopped

Method Detail

values

public static JCoServerState[] 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 (JCoServerState c : JCoServerState.values())
    System.out.println(c);

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

valueOf

public static JCoServerState 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


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