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

public enum Name extends Enum<Name>
Enum representing the possible values for name in a technical element, specifying the name of the platform or software requirements.

The following schema snippet defines the possible values:


 <xs:simpleType name="nameVocab">
   <xs:restriction base="xs:string">
     <xs:enumeration value="pc-dos"/>
     <xs:enumeration value="ms-windows"/>
     <xs:enumeration value="macos"/>
     <xs:enumeration value="unix"/>
     <xs:enumeration value="multi-os"/>
     <xs:enumeration value="none"/>
     <xs:enumeration value="any"/>
     <xs:enumeration value="netscape communicator"/>
     <xs:enumeration value="ms-internet explorer"/>
     <xs:enumeration value="opera"/>
     <xs:enumeration value="amaya"/>
   </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 "amaya" value specifies that the platform or software requirements are for Amaya.
    The "any" value specifies that the platform or software requirements are for any operating system.
    The "macOS" value specifies that the platform or software requirements are for macOS.
    The "ms-internet explorer" value specifies that the platform or software requirements are for MS Internet Explorer.
    The "ms-windows" value specifies that the platform or software requirements are for MS Windows.
    The "multi-os" value specifies that the platform or software requirements are for multiple operating systems.
    The "netscape communicator" value specifies that the platform or software requirements are for Netscape Communicator.
    The "none" value specifies that there are no platform or software requirements.
    The "opera" value specifies that the platform or software requirements are for Opera.
    The "pc-dos" value specifies that the platform or software requirements are for PC-DOS.
    The "unix" value specifies that the platform or software requirements are for Unix.
    The "unknown" value specifies that the platform or software requirements are unknown.
  • Method Summary

    Modifier and Type
    Method
    Description
    static Name
    Returns the enum constant of this class with the specified name.
    static Name[]
    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

    • PC_DOS

      public static final Name PC_DOS
      The "pc-dos" value specifies that the platform or software requirements are for PC-DOS.
    • MS_WINDOWS

      public static final Name MS_WINDOWS
      The "ms-windows" value specifies that the platform or software requirements are for MS Windows.
    • MACOS

      public static final Name MACOS
      The "macOS" value specifies that the platform or software requirements are for macOS.
    • UNIX

      public static final Name UNIX
      The "unix" value specifies that the platform or software requirements are for Unix.
    • MULTI_OS

      public static final Name MULTI_OS
      The "multi-os" value specifies that the platform or software requirements are for multiple operating systems.
    • NONE

      public static final Name NONE
      The "none" value specifies that there are no platform or software requirements.
    • ANY

      public static final Name ANY
      The "any" value specifies that the platform or software requirements are for any operating system.
    • NETSCAPE_COMMUNICATOR

      public static final Name NETSCAPE_COMMUNICATOR
      The "netscape communicator" value specifies that the platform or software requirements are for Netscape Communicator.
    • MS_INTERNET_EXPLORER

      public static final Name MS_INTERNET_EXPLORER
      The "ms-internet explorer" value specifies that the platform or software requirements are for MS Internet Explorer.
    • OPERA

      public static final Name OPERA
      The "opera" value specifies that the platform or software requirements are for Opera.
    • AMAYA

      public static final Name AMAYA
      The "amaya" value specifies that the platform or software requirements are for Amaya.
    • UNKNOWN

      public static final Name UNKNOWN
      The "unknown" value specifies that the platform or software requirements are unknown.
  • Method Details

    • values

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