Enum Class Structure
- All Implemented Interfaces:
Serializable,Comparable<Structure>,Constable
Enum representing the possible values for
structure in a LOM element, specifying the
structure of the learning object. The following schema snippet defines the possible values:
<xs:simpleType name="structureValues">
<xs:restriction base="xs:token">
<xs:enumeration value="atomic"/>
<xs:enumeration value="collection"/>
<xs:enumeration value="networked"/>
<xs:enumeration value="hierarchical"/>
<xs:enumeration value="linear"/>
</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 "atomic" value specifies that the learning object is an atomic unit, not divisible into smaller parts.The "collection" value specifies that the learning object is a collection of smaller units, each with its own metadata.The "hierarchical" value specifies that the learning object is a hierarchical structure, with parent-child relationships between nodes.The "linear" value specifies that the learning object is a linear structure, with a single path through the content.The "networked" value specifies that the learning object is a networked structure, with multiple nodes and connections between them.The "unknown" value specifies that the structure of the learning object is unknown. -
Method Summary
-
Enum Constant Details
-
ATOMIC
The "atomic" value specifies that the learning object is an atomic unit, not divisible into smaller parts. -
COLLECTION
The "collection" value specifies that the learning object is a collection of smaller units, each with its own metadata. -
NETWORKED
The "networked" value specifies that the learning object is a networked structure, with multiple nodes and connections between them. -
HIERARCHICAL
The "hierarchical" value specifies that the learning object is a hierarchical structure, with parent-child relationships between nodes. -
LINEAR
The "linear" value specifies that the learning object is a linear structure, with a single path through the content. -
UNKNOWN
The "unknown" value specifies that the structure of the learning object is unknown.
-
-
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
-