Enum Class MoveOn
- All Implemented Interfaces:
Serializable,Comparable<MoveOn>,Constable
Enum representing the possible values for
moveOn in a CMI5 element, specifying the
conditions that must be met to move on to the next activity. The following schema snippet defines
the possible values:
<xs:simpleType name="moveOnValues">
<xs:restriction base="xs:token">
<xs:enumeration value="NotApplicable"/>
<xs:enumeration value="Completed"/>
<xs:enumeration value="CompletedAndPassed"/>
<xs:enumeration value="CompletedOrPassed"/>
<xs:enumeration value="Passed"/>
</xs:restriction>
</xs:simpleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe move on condition is completed.The move on condition is completed and passed.The move on condition is completed or passed.The move on condition is not applicable.The move on condition is passed. -
Method Summary
-
Enum Constant Details
-
NOT_APPLICABLE
The move on condition is not applicable. -
COMPLETED
The move on condition is completed. -
COMPLETED_AND_PASSED
The move on condition is completed and passed. -
COMPLETED_OR_PASSED
The move on condition is completed or passed. -
PASSED
The move on condition is passed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-