public static enum WelchsTTest.Hypothesis extends Enum<WelchsTTest.Hypothesis>
Enum Constant and Description |
---|
LEFT_SIDED
The
LEFT_SIDED test corresponds to $$ H_0: \mu_x - \mu_y
\ge c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y < c$$ |
RIGHT_SIDED
The
RIGHT_SIDED test corresponds to $$ H_0: \mu_x -
\mu_y \le c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y >c$$ |
TWO_SIDED
The
TWO_SIDED test corresponds to $$ H_0: \mu_x - \mu_y
= c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y \ne c$$ |
Modifier and Type | Method and Description |
---|---|
static WelchsTTest.Hypothesis |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WelchsTTest.Hypothesis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WelchsTTest.Hypothesis TWO_SIDED
TWO_SIDED
test corresponds to $$ H_0: \mu_x - \mu_y
= c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y \ne c$$public static final WelchsTTest.Hypothesis LEFT_SIDED
LEFT_SIDED
test corresponds to $$ H_0: \mu_x - \mu_y
\ge c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y < c$$public static final WelchsTTest.Hypothesis RIGHT_SIDED
RIGHT_SIDED
test corresponds to $$ H_0: \mu_x -
\mu_y \le c \,\,\,\,\,\mbox{vs.}\,\,\,\,\, H_1: \mu_x - \mu_y >c$$public static WelchsTTest.Hypothesis[] values()
for (WelchsTTest.Hypothesis c : WelchsTTest.Hypothesis.values()) System.out.println(c);
public static WelchsTTest.Hypothesis 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 © 2020 Rogue Wave Software. All rights reserved.