org.activemath.studentmodel2.data
Enum AffectiveModel.Factor
java.lang.Object
java.lang.Enum<AffectiveModel.Factor>
org.activemath.studentmodel2.data.AffectiveModel.Factor
- All Implemented Interfaces:
- Serializable, Comparable<AffectiveModel.Factor>
- Enclosing class:
- AffectiveModel
public static enum AffectiveModel.Factor
- extends Enum<AffectiveModel.Factor>
Constants defining supported and modeled affective factors:
- intrinsic value
- perceived competence
- fear of failure
- attainment value
INTRINSIC_VALUE
public static final AffectiveModel.Factor INTRINSIC_VALUE
PERCEIVED_COMPETENCE
public static final AffectiveModel.Factor PERCEIVED_COMPETENCE
FEAR_OF_FAILURE
public static final AffectiveModel.Factor FEAR_OF_FAILURE
ATTAINMENT_VALUE
public static final AffectiveModel.Factor ATTAINMENT_VALUE
values
public static AffectiveModel.Factor[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AffectiveModel.Factor c : AffectiveModel.Factor.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AffectiveModel.Factor valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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 type has no constant
with the specified name
NullPointerException - if the argument is null