Package ai.libs.jaicore.basic.kvstore
Enum ESignificanceTestResult
- java.lang.Object
-
- java.lang.Enum<ESignificanceTestResult>
-
- ai.libs.jaicore.basic.kvstore.ESignificanceTestResult
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ESignificanceTestResult>
public enum ESignificanceTestResult extends java.lang.Enum<ESignificanceTestResult>
Enum for the outcomes for a significance test. If superior: the considered sample is significantly better. If inferior: the considered sample is significantly worse. If tie: there is no significant difference between the two samples.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ESignificanceTestResultvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ESignificanceTestResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUPERIOR
public static final ESignificanceTestResult SUPERIOR
-
TIE
public static final ESignificanceTestResult TIE
-
INFERIOR
public static final ESignificanceTestResult INFERIOR
-
-
Method Detail
-
values
public static ESignificanceTestResult[] 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 (ESignificanceTestResult c : ESignificanceTestResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ESignificanceTestResult 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
-
-