Enum Class CalculationOperation
- All Implemented Interfaces:
Serializable, Comparable<CalculationOperation>, Constable
This enumeration contains the various gradebook column calculations.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCalculate the mean of the linked column entries.Calculate the median of the linked column entries.Calculate the mode of the linked column entries.Calculate the percentile of the linked column.Calculate the root mean square of the linked column entries.Use an external rule to process the linked column entries.Calculate the offset from the standard deviation calculation of the linked column.Calculate the sum of the values of the linked column entries.Transform the grade entries between the GradeSystems defined in the input and the target columns. -
Method Summary
Modifier and TypeMethodDescriptionstatic CalculationOperationReturns the enum constant of this class with the specified name.static CalculationOperation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TRANSFORM
Transform the grade entries between the GradeSystems defined in the input and the target columns. -
MEAN
Calculate the mean of the linked column entries. -
MEDIAN
Calculate the median of the linked column entries. -
MODE
Calculate the mode of the linked column entries. -
PERCENTILE
Calculate the percentile of the linked column. If more than one column is selected, the mean of the row entries is used. -
RMS
Calculate the root mean square of the linked column entries. -
RULE
Use an external rule to process the linked column entries. -
STD_DEVIATION_OFFSET
Calculate the offset from the standard deviation calculation of the linked column. If more than one column is selected, the mean of the row entries is used. -
SUM
Calculate the sum of the values of the linked column entries.
-
-
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
-
getDisplayName
-
getDescription
-