public enum AlternativeHypothesis extends java.lang.Enum<AlternativeHypothesis>
Enum Constant and Description |
---|
GREATER_THAN
Represents a right-sided test.
|
LESS_THAN
Represents a left-sided test.
|
TWO_SIDED
Represents a two-sided test.
|
Modifier and Type | Method and Description |
---|---|
static AlternativeHypothesis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlternativeHypothesis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlternativeHypothesis TWO_SIDED
public static final AlternativeHypothesis GREATER_THAN
public static final AlternativeHypothesis LESS_THAN
public static AlternativeHypothesis[] values()
for (AlternativeHypothesis c : AlternativeHypothesis.values()) System.out.println(c);
public static AlternativeHypothesis valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2003-2016 Apache Software Foundation