public static enum WelchsTTest.Hypothesis extends Enum<WelchsTTest.Hypothesis>
Enum Constant and Description |
---|
LEFT_SIDED
The
LEFT_SIDED test corresponds to H0:μx−μy≥cvs.H1:μx−μy<c |
RIGHT_SIDED
The
RIGHT_SIDED test corresponds to H0:μx−μy≤cvs.H1:μx−μy>c |
TWO_SIDED
The
TWO_SIDED test corresponds to H0:μx−μy=cvs.H1:μx−μy≠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 H0:μx−μy=cvs.H1:μx−μy≠cpublic static final WelchsTTest.Hypothesis LEFT_SIDED
LEFT_SIDED
test corresponds to H0:μx−μy≥cvs.H1:μx−μy<cpublic static final WelchsTTest.Hypothesis RIGHT_SIDED
RIGHT_SIDED
test corresponds to H0:μx−μy≤cvs.H1:μx−μy>cpublic 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.