org.activemath.studentmodel2.data
Enum AffectiveModel.Factor

java.lang.Object
  extended by java.lang.Enum<AffectiveModel.Factor>
      extended by 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:


Enum Constant Summary
ATTAINMENT_VALUE
           
FEAR_OF_FAILURE
           
INTRINSIC_VALUE
           
PERCEIVED_COMPETENCE
           
 
Method Summary
static AffectiveModel.Factor valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AffectiveModel.Factor[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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