Enum Class Purpose
- All Implemented Interfaces:
Serializable,Comparable<Purpose>,Constable
The purpose of the learning object. The following schema snippet defines the Purpose type:
<xs:simpleType name="purposeValues">
<xs:restriction base="xs:token">
<xs:enumeration value="discipline"/>
<xs:enumeration value="idea"/>
<xs:enumeration value="prerequisite"/>
<xs:enumeration value="educational objective"/>
<xs:enumeration value="accessibility restrictions"/>
<xs:enumeration value="educational level"/>
<xs:enumeration value="skill level"/>
<xs:enumeration value="security level"/>
<xs:enumeration value="competency"/>
</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 purpose of the learning object is to provide accessibility restrictions.The purpose of the learning object is to provide a competency.The purpose of the learning object is to provide a discipline.The purpose of the learning object is to provide an educational level.The purpose of the learning object is to provide an educational objective.The purpose of the learning object is to provide an idea.The purpose of the learning object is to provide a prerequisite.The purpose of the learning object is to provide a security level.The purpose of the learning object is to provide a skill level.The purpose of the learning object is unknown. -
Method Summary
-
Enum Constant Details
-
DISCIPLINE
The purpose of the learning object is to provide a discipline. -
IDEA
The purpose of the learning object is to provide an idea. -
PREREQUISITE
The purpose of the learning object is to provide a prerequisite. -
EDUCATIONAL_OBJECTIVE
The purpose of the learning object is to provide an educational objective. -
ACCESSIBILITY_RESTRICTIONS
The purpose of the learning object is to provide accessibility restrictions. -
EDUCATIONAL_LEVEL
The purpose of the learning object is to provide an educational level. -
SKILL_LEVEL
The purpose of the learning object is to provide a skill level. -
SECURITY_LEVEL
The purpose of the learning object is to provide a security level. -
COMPETENCY
The purpose of the learning object is to provide a competency. -
UNKNOWN
The purpose 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
-