public static enum ChiSquareIndependenceTest.Type extends Enum<ChiSquareIndependenceTest.Type>
Enum Constant and Description |
---|
ASYMPTOTIC
The default is the asymptotic distribution of Fisher's exact test.
|
EXACT
This is the exact distribution for Fisher's exact test.
|
Modifier and Type | Method and Description |
---|---|
static ChiSquareIndependenceTest.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChiSquareIndependenceTest.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChiSquareIndependenceTest.Type ASYMPTOTIC
public static final ChiSquareIndependenceTest.Type EXACT
public static ChiSquareIndependenceTest.Type[] values()
for (ChiSquareIndependenceTest.Type c : ChiSquareIndependenceTest.Type.values()) System.out.println(c);
public static ChiSquareIndependenceTest.Type 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 © 2010-2020 NM FinTech Ltd.. All Rights Reserved.