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
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>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe return to LMS action type is exit all.The return to LMS action type is legacy.The return to LMS action type is selectable.The return to LMS action type is suspend all. -
Method Summary
Modifier and TypeMethodDescriptionstatic ReturnToLmsActionTypeReturns the enum constant of this class with the specified name.static ReturnToLmsActionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LEGACY
The return to LMS action type is legacy. -
SUSPEND_ALL
The return to LMS action type is suspend all. -
EXIT_ALL
The return to LMS action type is exit all. -
SELECTABLE
The return to LMS action type is selectable.
-
-
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
-