Enum Class ReturnToLmsActionType

java.lang.Object
java.lang.Enum<ReturnToLmsActionType>
dev.jcputney.elearning.parser.input.lom.properties.ReturnToLmsActionType
All Implemented Interfaces:
Serializable, Comparable<ReturnToLmsActionType>, Constable

public enum ReturnToLmsActionType extends Enum<ReturnToLmsActionType>

Enum representing the returnToLmsActionType simple type.

The following schema snippet defines the possible values:


 <xs:simpleType name="returnToLmsActionType">
   <xs:restriction base="xs:string">
     <xs:enumeration value="legacy" />
     <xs:enumeration value="suspend_all" />
     <xs:enumeration value="exit_all" />
     <xs:enumeration value="selectable" />
   </xs:restriction>
 </xs:simpleType>
 
  • Enum Constant Details

    • LEGACY

      public static final ReturnToLmsActionType LEGACY
      The return to LMS action type is legacy.
    • SUSPEND_ALL

      public static final ReturnToLmsActionType SUSPEND_ALL
      The return to LMS action type is suspend all.
    • EXIT_ALL

      public static final ReturnToLmsActionType EXIT_ALL
      The return to LMS action type is exit all.
    • SELECTABLE

      public static final ReturnToLmsActionType SELECTABLE
      The return to LMS action type is selectable.
  • Method Details

    • values

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