public enum AlternativeHypothesis extends 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(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2003–2016 The Apache Software Foundation. All rights reserved.