Enum KolmogorovTwoSamplesDistribution.Side
- java.lang.Object
-
- java.lang.Enum<KolmogorovTwoSamplesDistribution.Side>
-
- dev.nm.stat.test.distribution.kolmogorov.KolmogorovTwoSamplesDistribution.Side
-
- All Implemented Interfaces:
Serializable
,Comparable<KolmogorovTwoSamplesDistribution.Side>
- Enclosing class:
- KolmogorovTwoSamplesDistribution
public static enum KolmogorovTwoSamplesDistribution.Side extends Enum<KolmogorovTwoSamplesDistribution.Side>
the available types of Kolmogorov-Smirnov two-sample test
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KolmogorovTwoSamplesDistribution.Side
valueOf(String name)
Returns the enum constant of this type with the specified name.static KolmogorovTwoSamplesDistribution.Side[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final KolmogorovTwoSamplesDistribution.Side EQUAL
two-sample; two-sided
-
GREATER
public static final KolmogorovTwoSamplesDistribution.Side GREATER
two-sample; one-sided
-
LESS
public static final KolmogorovTwoSamplesDistribution.Side LESS
two-sample; one-sided
-
-
Method Detail
-
values
public static KolmogorovTwoSamplesDistribution.Side[] 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 (KolmogorovTwoSamplesDistribution.Side c : KolmogorovTwoSamplesDistribution.Side.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KolmogorovTwoSamplesDistribution.Side 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
-
-