Enum Class HideLMSUI
- All Implemented Interfaces:
Serializable,Comparable<HideLMSUI>,Constable
Enum representing elements of the LMS user interface that can be hidden. This enables or disables
specific LMS features in line with SCORM navigation requirements. The following schema snippet
defines the possible values for this type:
<xs:simpleType name = "hideLMSUIType">
<xs:restriction base = "xs:token">
<xs:enumeration value = "abandon"/>
<xs:enumeration value = "continue"/>
<xs:enumeration value = "exit"/>
<xs:enumeration value = "previous"/>
<xs:enumeration value = "suspendAll"/>
<xs:enumeration value = "exitAll"/>
<xs:enumeration value = "abandonAll"/>
</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 "abandon" option hides the LMS's "abandon" button or action.The "abandonAll" option hides the LMS's "abandon all" feature.The "continue" option hides the LMS's "continue" button or action.The "exit" option hides the LMS's "exit" button or action.The "exitAll" option hides the LMS's "exit all" feature.The "previous" option hides the LMS's "previous" button or action.The "suspendAll" option hides the LMS's "suspend all" feature.The "unknown" option indicates that the LMS UI element is not specified or recognized. -
Method Summary
-
Enum Constant Details
-
ABANDON
The "abandon" option hides the LMS's "abandon" button or action. -
CONTINUE
The "continue" option hides the LMS's "continue" button or action. -
EXIT
The "exit" option hides the LMS's "exit" button or action. -
PREVIOUS
The "previous" option hides the LMS's "previous" button or action. -
SUSPEND_ALL
The "suspendAll" option hides the LMS's "suspend all" feature. -
EXIT_ALL
The "exitAll" option hides the LMS's "exit all" feature. -
ABANDON_ALL
The "abandonAll" option hides the LMS's "abandon all" feature. -
UNKNOWN
The "unknown" option indicates that the LMS UI element is not specified or recognized.
-
-
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
-