com.ibm.pim.spec
Enum Spec.Type

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

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

Possible Spec types


Enum Constant Summary
DESTINATION_SPEC
           
FILE_SPEC
           
LOOKUP_SPEC
           
PRIMARY_SPEC
           
SCRIPT_INPUT_SPEC
           
SECONDARY_SPEC
           
SUB_SPEC
           
 
Method Summary
static Spec.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Spec.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

PRIMARY_SPEC

public static final Spec.Type PRIMARY_SPEC

SECONDARY_SPEC

public static final Spec.Type SECONDARY_SPEC

LOOKUP_SPEC

public static final Spec.Type LOOKUP_SPEC

FILE_SPEC

public static final Spec.Type FILE_SPEC

DESTINATION_SPEC

public static final Spec.Type DESTINATION_SPEC

SUB_SPEC

public static final Spec.Type SUB_SPEC

SCRIPT_INPUT_SPEC

public static final Spec.Type SCRIPT_INPUT_SPEC
Method Detail

values

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