java.lang.Object
java.lang.Enum<HideLMSUI>
dev.jcputney.elearning.parser.input.scorm2004.adl.navigation.HideLMSUI
All Implemented Interfaces:
Serializable, Comparable<HideLMSUI>, Constable

public enum HideLMSUI extends Enum<HideLMSUI>
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 Constants
    Enum Constant
    Description
    The "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

    Modifier and Type
    Method
    Description
    static HideLMSUI
    Returns the enum constant of this class with the specified name.
    static HideLMSUI[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ABANDON

      public static final HideLMSUI ABANDON
      The "abandon" option hides the LMS's "abandon" button or action.
    • CONTINUE

      public static final HideLMSUI CONTINUE
      The "continue" option hides the LMS's "continue" button or action.
    • EXIT

      public static final HideLMSUI EXIT
      The "exit" option hides the LMS's "exit" button or action.
    • PREVIOUS

      public static final HideLMSUI PREVIOUS
      The "previous" option hides the LMS's "previous" button or action.
    • SUSPEND_ALL

      public static final HideLMSUI SUSPEND_ALL
      The "suspendAll" option hides the LMS's "suspend all" feature.
    • EXIT_ALL

      public static final HideLMSUI EXIT_ALL
      The "exitAll" option hides the LMS's "exit all" feature.
    • ABANDON_ALL

      public static final HideLMSUI ABANDON_ALL
      The "abandonAll" option hides the LMS's "abandon all" feature.
    • UNKNOWN

      public static final HideLMSUI UNKNOWN
      The "unknown" option indicates that the LMS UI element is not specified or recognized.
  • Method Details

    • values

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