com.ibm.batch.container.services
Enum ServicesManager.ServiceType

java.lang.Object
  extended by java.lang.Enum<ServicesManager.ServiceType>
      extended by com.ibm.batch.container.services.ServicesManager.ServiceType
All Implemented Interfaces:
Serializable, Comparable<ServicesManager.ServiceType>
Enclosing class:
ServicesManager

public static enum ServicesManager.ServiceType
extends Enum<ServicesManager.ServiceType>


Enum Constant Summary
BATCH_KERNEL_SERVICE
           
BATCH_THREADPOOL_SERVICE
           
CALLBACK_SERVICE
           
CONTAINER_ARTIFACT_FACTORY_SERVICE
           
JAVA_EDITION_IS_SE_DUMMY_SERVICE
           
JOB_ID_MANAGEMENT_SERVICE
           
JOB_STATUS_MANAGEMENT_SERVICE
           
PERSISTENCE_MANAGEMENT_SERVICE
           
TRANSACTION_SERVICE
           
 
Method Summary
static ServicesManager.ServiceType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ServicesManager.ServiceType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TRANSACTION_SERVICE

public static final ServicesManager.ServiceType TRANSACTION_SERVICE

PERSISTENCE_MANAGEMENT_SERVICE

public static final ServicesManager.ServiceType PERSISTENCE_MANAGEMENT_SERVICE

JOB_STATUS_MANAGEMENT_SERVICE

public static final ServicesManager.ServiceType JOB_STATUS_MANAGEMENT_SERVICE

BATCH_THREADPOOL_SERVICE

public static final ServicesManager.ServiceType BATCH_THREADPOOL_SERVICE

CONTAINER_ARTIFACT_FACTORY_SERVICE

public static final ServicesManager.ServiceType CONTAINER_ARTIFACT_FACTORY_SERVICE

BATCH_KERNEL_SERVICE

public static final ServicesManager.ServiceType BATCH_KERNEL_SERVICE

JOB_ID_MANAGEMENT_SERVICE

public static final ServicesManager.ServiceType JOB_ID_MANAGEMENT_SERVICE

CALLBACK_SERVICE

public static final ServicesManager.ServiceType CALLBACK_SERVICE

JAVA_EDITION_IS_SE_DUMMY_SERVICE

public static final ServicesManager.ServiceType JAVA_EDITION_IS_SE_DUMMY_SERVICE
Method Detail

values

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

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

valueOf

public static ServicesManager.ServiceType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2013. All Rights Reserved.