Enum EMultiClassPerformanceMeasure
- java.lang.Object
-
- java.lang.Enum<EMultiClassPerformanceMeasure>
-
- ai.libs.jaicore.ml.core.evaluation.measure.singlelabel.EMultiClassPerformanceMeasure
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EMultiClassPerformanceMeasure>
public enum EMultiClassPerformanceMeasure extends java.lang.Enum<EMultiClassPerformanceMeasure>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORRATEMEAN_SQUARED_ERRORPRECISIONROOT_MEAN_SQUARED_ERROR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EMultiClassPerformanceMeasurevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EMultiClassPerformanceMeasure[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ERRORRATE
public static final EMultiClassPerformanceMeasure ERRORRATE
-
MEAN_SQUARED_ERROR
public static final EMultiClassPerformanceMeasure MEAN_SQUARED_ERROR
-
ROOT_MEAN_SQUARED_ERROR
public static final EMultiClassPerformanceMeasure ROOT_MEAN_SQUARED_ERROR
-
PRECISION
public static final EMultiClassPerformanceMeasure PRECISION
-
-
Method Detail
-
values
public static EMultiClassPerformanceMeasure[] 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 (EMultiClassPerformanceMeasure c : EMultiClassPerformanceMeasure.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EMultiClassPerformanceMeasure valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-