com.ibm.pim.job
Enum Executable.Type

java.lang.Object
  extended by java.lang.Enum<Executable.Type>
      extended by com.ibm.pim.job.Executable.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Executable.Type>
Enclosing interface:
Executable

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

This is an enum type for job executable.

Since:
6.0.0

Enum Constant Summary
CATALOG_COPY
           
CATALOG_DELETE
           
CATALOG_EXPORT
           
CATALOG_IMPORT
           
CATALOG_ROLLBACK
           
CCM_UPDATE_ITEMS
           
DOCSTORE_COPY
           
FETCH_DB_FILE
           
FETCH_DOCSTORE
           
FETCH_FTP_FILE
           
HIERARCHY_DELETE
           
HIERARCHY_ROLLBACK
           
IMG_TO_FS
           
IMPORT_COMPANY_ENV
           
ORDER_IMPORT
           
PO_EXPORT
           
REPORT
           
SEARCH
           
SYNC
           
 
Method Summary
static Executable.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Executable.Type[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CATALOG_IMPORT

public static final Executable.Type CATALOG_IMPORT

CATALOG_EXPORT

public static final Executable.Type CATALOG_EXPORT

CATALOG_COPY

public static final Executable.Type CATALOG_COPY

CATALOG_ROLLBACK

public static final Executable.Type CATALOG_ROLLBACK

CATALOG_DELETE

public static final Executable.Type CATALOG_DELETE

HIERARCHY_ROLLBACK

public static final Executable.Type HIERARCHY_ROLLBACK

HIERARCHY_DELETE

public static final Executable.Type HIERARCHY_DELETE

REPORT

public static final Executable.Type REPORT

SEARCH

public static final Executable.Type SEARCH

DOCSTORE_COPY

public static final Executable.Type DOCSTORE_COPY

IMPORT_COMPANY_ENV

public static final Executable.Type IMPORT_COMPANY_ENV

FETCH_DB_FILE

public static final Executable.Type FETCH_DB_FILE

FETCH_DOCSTORE

public static final Executable.Type FETCH_DOCSTORE

FETCH_FTP_FILE

public static final Executable.Type FETCH_FTP_FILE

IMG_TO_FS

public static final Executable.Type IMG_TO_FS

ORDER_IMPORT

public static final Executable.Type ORDER_IMPORT

PO_EXPORT

public static final Executable.Type PO_EXPORT

CCM_UPDATE_ITEMS

public static final Executable.Type CCM_UPDATE_ITEMS

SYNC

public static final Executable.Type SYNC
Method Detail

values

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

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

valueOf

public static Executable.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