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

public enum ResetRunTimeDataTimingType extends Enum<ResetRunTimeDataTimingType>

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>
 
  • Enum Constant Details

    • NEVER

      public static final ResetRunTimeDataTimingType NEVER
      The reset run time data timing type is "never".
    • WHEN_EXIT_IS_NOT_SUSPEND

      public static final ResetRunTimeDataTimingType WHEN_EXIT_IS_NOT_SUSPEND
      The reset run time data timing type is "when exit is not suspend".
    • ON_EACH_NEW_SEQUENCING_ATTEMPT

      public static final ResetRunTimeDataTimingType ON_EACH_NEW_SEQUENCING_ATTEMPT
      The reset run time data timing type is "on each new sequencing attempt".
  • Method Details

    • values

      public static ResetRunTimeDataTimingType[] 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

      public static ResetRunTimeDataTimingType valueOf(String name)
      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 name
      NullPointerException - if the argument is null