Package adams.flow.transformer
Enum WekaBootstrapping.ErrorCalculation
- java.lang.Object
-
- java.lang.Enum<WekaBootstrapping.ErrorCalculation>
-
- adams.flow.transformer.WekaBootstrapping.ErrorCalculation
-
- All Implemented Interfaces:
Serializable
,Comparable<WekaBootstrapping.ErrorCalculation>
- Enclosing class:
- WekaBootstrapping
public static enum WekaBootstrapping.ErrorCalculation extends Enum<WekaBootstrapping.ErrorCalculation>
how to calculate the error.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSOLUTE
ACTUAL_MINUS_PREDICTED
BOTH
PREDICTED_MINUS_ACTUAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WekaBootstrapping.ErrorCalculation
valueOf(String name)
Returns the enum constant of this type with the specified name.static WekaBootstrapping.ErrorCalculation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTUAL_MINUS_PREDICTED
public static final WekaBootstrapping.ErrorCalculation ACTUAL_MINUS_PREDICTED
-
PREDICTED_MINUS_ACTUAL
public static final WekaBootstrapping.ErrorCalculation PREDICTED_MINUS_ACTUAL
-
BOTH
public static final WekaBootstrapping.ErrorCalculation BOTH
-
ABSOLUTE
public static final WekaBootstrapping.ErrorCalculation ABSOLUTE
-
-
Method Detail
-
values
public static WekaBootstrapping.ErrorCalculation[] 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 (WekaBootstrapping.ErrorCalculation c : WekaBootstrapping.ErrorCalculation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WekaBootstrapping.ErrorCalculation 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 nameNullPointerException
- if the argument is null
-
-