com.businessobjects.sdk.plugin.desktop.common
Class ServiceState

java.lang.Object
  extended by java.lang.Enum
      extended by com.businessobjects.sdk.plugin.desktop.common.ServiceState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable

public final class ServiceState
extends java.lang.Enum

The ServiceState enum represents the SI_STATUS property on the configured service (@see IConfiguredService).

Since:
4.0
See Also:
Serialized Form

Field Summary
static ServiceState NOT_EXISTS
           
static ServiceState RUNNING
           
static ServiceState START_FAILED
           
static ServiceState STARTING
           
static ServiceState STOP_FAILED
           
static ServiceState STOPPED
           
static ServiceState STOPPING
           
static ServiceState UNKNOWN
           
 int val
           
 
Method Summary
static ServiceState FromInt(int val)
           
static ServiceState valueOf(java.lang.String name)
           
static ServiceState[] values()
           
 
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
 

Field Detail

UNKNOWN

public static final ServiceState UNKNOWN

STOP_FAILED

public static final ServiceState STOP_FAILED

START_FAILED

public static final ServiceState START_FAILED

STOPPED

public static final ServiceState STOPPED

RUNNING

public static final ServiceState RUNNING

STOPPING

public static final ServiceState STOPPING

STARTING

public static final ServiceState STARTING

NOT_EXISTS

public static final ServiceState NOT_EXISTS

val

public final int val
Method Detail

values

public static ServiceState[] values()

valueOf

public static ServiceState valueOf(java.lang.String name)

FromInt

public static ServiceState FromInt(int val)