com.ibm.pim.job
Enum Import.OptionalArguments

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

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

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


Enum Constant Summary
ACCESSCONTROLGROUP
           
APPROVER_USER
           
CHARSET
           
DOCSTOREPATH_TO_SCRIPT
           
FEEDFILE_PATH
           
IMPORT_SEMANTICS
           
PARAMS_DOCPATH
           
SPECMAP
           
 
Method Summary
static Import.OptionalArguments valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Import.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 Import.OptionalArguments CHARSET

PARAMS_DOCPATH

public static final Import.OptionalArguments PARAMS_DOCPATH

IMPORT_SEMANTICS

public static final Import.OptionalArguments IMPORT_SEMANTICS

APPROVER_USER

public static final Import.OptionalArguments APPROVER_USER

ACCESSCONTROLGROUP

public static final Import.OptionalArguments ACCESSCONTROLGROUP

SPECMAP

public static final Import.OptionalArguments SPECMAP

DOCSTOREPATH_TO_SCRIPT

public static final Import.OptionalArguments DOCSTOREPATH_TO_SCRIPT

FEEDFILE_PATH

public static final Import.OptionalArguments FEEDFILE_PATH
Method Detail

values

public static final Import.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(Import.OptionalArguments c : Import.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 Import.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