Package com.imsl.stat
Enum Class WelchsTTest.Hypothesis
- All Implemented Interfaces:
Serializable,Comparable<WelchsTTest.Hypothesis>,java.lang.constant.Constable
- Enclosing class:
- WelchsTTest
The form of the alternate hypothesis.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTheLEFT_SIDEDtest corresponds to $$ H_0: \mu_x - \mu_y \ge c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y < c$$TheRIGHT_SIDEDtest corresponds to $$ H_0: \mu_x - \mu_y \le c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y >c$$TheTWO_SIDEDtest corresponds to $$ H_0: \mu_x - \mu_y = c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y \ne c$$ -
Method Summary
Modifier and TypeMethodDescriptionstatic WelchsTTest.HypothesisReturns the enum constant of this class with the specified name.static WelchsTTest.Hypothesis[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TWO_SIDED
TheTWO_SIDEDtest corresponds to $$ H_0: \mu_x - \mu_y = c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y \ne c$$ -
LEFT_SIDED
TheLEFT_SIDEDtest corresponds to $$ H_0: \mu_x - \mu_y \ge c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y < c$$ -
RIGHT_SIDED
TheRIGHT_SIDEDtest corresponds to $$ H_0: \mu_x - \mu_y \le c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y >c$$
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-