com.ibm.pim.job
Enum Export.OptionalArguments

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

public static enum Export.OptionalArguments
extends java.lang.Enum<Export.OptionalArguments>

Set of optional arguments that can be passed while creating an export.


Enum Constant Summary
APPROVER_USER
           
CHARSET
           
CONTENTDIFF_TYPE
           
DISTRIBUTION
           
DISTRIBUTION_GROUP
           
DOCSTOREPATH_TO_SCRIPT
           
FIRST_VERSION
           
PARAMS_DOCPATH
           
SECOND_VERSION
           
SELECTION
           
 
Method Summary
static Export.OptionalArguments valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Export.OptionalArguments[] 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

CHARSET

public static final Export.OptionalArguments CHARSET

DISTRIBUTION

public static final Export.OptionalArguments DISTRIBUTION

DISTRIBUTION_GROUP

public static final Export.OptionalArguments DISTRIBUTION_GROUP

PARAMS_DOCPATH

public static final Export.OptionalArguments PARAMS_DOCPATH

SELECTION

public static final Export.OptionalArguments SELECTION

APPROVER_USER

public static final Export.OptionalArguments APPROVER_USER

FIRST_VERSION

public static final Export.OptionalArguments FIRST_VERSION

SECOND_VERSION

public static final Export.OptionalArguments SECOND_VERSION

CONTENTDIFF_TYPE

public static final Export.OptionalArguments CONTENTDIFF_TYPE

DOCSTOREPATH_TO_SCRIPT

public static final Export.OptionalArguments DOCSTOREPATH_TO_SCRIPT
Method Detail

values

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

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

valueOf

public static Export.OptionalArguments 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