com.rapidtransform.spec.model
Enum EffectivityAssignment.EffectivityRole

java.lang.Object
  extended by java.lang.Enum<EffectivityAssignment.EffectivityRole>
      extended by com.rapidtransform.spec.model.EffectivityAssignment.EffectivityRole
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EffectivityAssignment.EffectivityRole>
Enclosing class:
EffectivityAssignment

public static enum EffectivityAssignment.EffectivityRole
extends java.lang.Enum<EffectivityAssignment.EffectivityRole>


Enum Constant Summary
ACTUAL
          The actual period the effectivity applied
PLANNED
          the planned period the effectivity is, will, or was supposed to be applied.
REQUIRED
          The associated is required to be effective during this period.
 
Method Summary
static EffectivityAssignment.EffectivityRole valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EffectivityAssignment.EffectivityRole[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ACTUAL

public static final EffectivityAssignment.EffectivityRole ACTUAL
The actual period the effectivity applied


PLANNED

public static final EffectivityAssignment.EffectivityRole PLANNED
the planned period the effectivity is, will, or was supposed to be applied.


REQUIRED

public static final EffectivityAssignment.EffectivityRole REQUIRED
The associated is required to be effective during this period.

Method Detail

values

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

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

valueOf

public static EffectivityAssignment.EffectivityRole 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