com.ibm.pim.utils
Enum ExportList.Type

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

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

Enumeration of object types for use by environment export and import tool. This list contains the object types for which export and import is supported .


Enum Constant Summary
ACCESS_CONTROL_GROUP
           
ALERT
           
ATTRIBUTE_COLLECTION
           
CATALOG
           
CATALOG_CONTENT
           
CATALOG_VIEW
           
COLLABORATION_AREA
           
COMPANY_ATTRIBUTES
           
CONTAINER_ACCESS_PRIVILEGE
           
DATASOURCE
           
DESTINATION_SPEC
           
DISTRIBUTION
           
DISTRIBUTION_GROUP
           
DOCUMENT
           
EXPORT
           
FEED
           
FILE_SPEC
           
HIERARCHY
           
HIERARCHY_CONTENT
           
HIERARCHY_MAP
           
HIERARCHY_VIEW
           
JOB
           
LOOKUP_TABLE
           
LOOKUP_TABLE_CONTENT
           
LOOKUP_TABLE_SPEC
           
MAP
           
MY_SETTINGS
           
ORGANIZATION_HIERARCHY
           
ORGANIZATION_HIERARCHY_CONTENT
           
PRIMARY_SPEC
           
QUEUE
           
REPORT
           
ROLE
           
ROLE_LOCALE_ACCESS
           
SCRIPT_INPUT_SPEC
           
SECONDARY_SPEC
           
SELECTION
           
SPEC
           
SUB_SPEC
           
USER
           
USER_DEFINED_LOG
           
USER_DEFINED_LOG_CONTENT
           
WEBSERVICE
           
WORKFLOW
           
 
Method Summary
static ExportList.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExportList.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

ACCESS_CONTROL_GROUP

public static final ExportList.Type ACCESS_CONTROL_GROUP

ALERT

public static final ExportList.Type ALERT

ATTRIBUTE_COLLECTION

public static final ExportList.Type ATTRIBUTE_COLLECTION

CATALOG

public static final ExportList.Type CATALOG

CATALOG_CONTENT

public static final ExportList.Type CATALOG_CONTENT

CATALOG_VIEW

public static final ExportList.Type CATALOG_VIEW

COLLABORATION_AREA

public static final ExportList.Type COLLABORATION_AREA

COMPANY_ATTRIBUTES

public static final ExportList.Type COMPANY_ATTRIBUTES

CONTAINER_ACCESS_PRIVILEGE

public static final ExportList.Type CONTAINER_ACCESS_PRIVILEGE

DATASOURCE

public static final ExportList.Type DATASOURCE

DESTINATION_SPEC

public static final ExportList.Type DESTINATION_SPEC

DISTRIBUTION

public static final ExportList.Type DISTRIBUTION

DISTRIBUTION_GROUP

public static final ExportList.Type DISTRIBUTION_GROUP

DOCUMENT

public static final ExportList.Type DOCUMENT

EXPORT

public static final ExportList.Type EXPORT

FEED

public static final ExportList.Type FEED

FILE_SPEC

public static final ExportList.Type FILE_SPEC

HIERARCHY

public static final ExportList.Type HIERARCHY

HIERARCHY_CONTENT

public static final ExportList.Type HIERARCHY_CONTENT

HIERARCHY_MAP

public static final ExportList.Type HIERARCHY_MAP

HIERARCHY_VIEW

public static final ExportList.Type HIERARCHY_VIEW

JOB

public static final ExportList.Type JOB

LOOKUP_TABLE

public static final ExportList.Type LOOKUP_TABLE

LOOKUP_TABLE_CONTENT

public static final ExportList.Type LOOKUP_TABLE_CONTENT

LOOKUP_TABLE_SPEC

public static final ExportList.Type LOOKUP_TABLE_SPEC

MAP

public static final ExportList.Type MAP

MY_SETTINGS

public static final ExportList.Type MY_SETTINGS

ORGANIZATION_HIERARCHY

public static final ExportList.Type ORGANIZATION_HIERARCHY

ORGANIZATION_HIERARCHY_CONTENT

public static final ExportList.Type ORGANIZATION_HIERARCHY_CONTENT

PRIMARY_SPEC

public static final ExportList.Type PRIMARY_SPEC

QUEUE

public static final ExportList.Type QUEUE

REPORT

public static final ExportList.Type REPORT

ROLE

public static final ExportList.Type ROLE

ROLE_LOCALE_ACCESS

public static final ExportList.Type ROLE_LOCALE_ACCESS

SELECTION

public static final ExportList.Type SELECTION

SCRIPT_INPUT_SPEC

public static final ExportList.Type SCRIPT_INPUT_SPEC

SECONDARY_SPEC

public static final ExportList.Type SECONDARY_SPEC

SPEC

public static final ExportList.Type SPEC

SUB_SPEC

public static final ExportList.Type SUB_SPEC

USER_DEFINED_LOG

public static final ExportList.Type USER_DEFINED_LOG

USER_DEFINED_LOG_CONTENT

public static final ExportList.Type USER_DEFINED_LOG_CONTENT

USER

public static final ExportList.Type USER

WEBSERVICE

public static final ExportList.Type WEBSERVICE

WORKFLOW

public static final ExportList.Type WORKFLOW
Method Detail

values

public static final ExportList.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(ExportList.Type c : ExportList.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 ExportList.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