Enum Class ResetRunTimeDataTimingType
java.lang.Object
java.lang.Enum<ResetRunTimeDataTimingType>
dev.jcputney.elearning.parser.input.lom.properties.ResetRunTimeDataTimingType
- All Implemented Interfaces:
Serializable,Comparable<ResetRunTimeDataTimingType>,Constable
Enum representing the resetRunTimeDataTimingType simple type.
The following schema snippet defines the possible values:
<xs:simpleType name="resetRunTimeDataTimingType">
<xs:restriction base="xs:string">
<xs:enumeration value="never" />
<xs:enumeration value="when exit is not suspend" />
<xs:enumeration value="on each new sequencing attempt" />
</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 reset run time data timing type is "never".The reset run time data timing type is "on each new sequencing attempt".The reset run time data timing type is "when exit is not suspend". -
Method Summary
Modifier and TypeMethodDescriptionstatic ResetRunTimeDataTimingTypeReturns the enum constant of this class with the specified name.static ResetRunTimeDataTimingType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NEVER
The reset run time data timing type is "never". -
WHEN_EXIT_IS_NOT_SUSPEND
The reset run time data timing type is "when exit is not suspend". -
ON_EACH_NEW_SEQUENCING_ATTEMPT
The reset run time data timing type is "on each new sequencing attempt".
-
-
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
-