|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StudentTTest.ConfidenceCoefficent>
org.android.activityminer.logic.statistics.StudentTTest.ConfidenceCoefficent
public static enum StudentTTest.ConfidenceCoefficent
Known confidence coefficients (for confidence interval calculation)
Enum Constant Summary | |
---|---|
_80
Index for the 80% two-sided test (significance level of 0.2, column for 0.90). |
|
_90
Index for the 90% two-sided test (significance level of 0.1, column for 0.95). |
|
_95
Index for the 95% two-sided test (significance level of 0.05, column for 0.975). |
|
_98
Index for the 98% two-sided test (significance level of 0.02, column for 0.99). |
|
_99
Index for the 99% two-sided test (significance level of 0.01, column for 0.995). |
|
_998
Index for the 99.8% two-sided test (significance level of 0.002, column for 0.999). |
Method Summary | |
---|---|
static StudentTTest.ConfidenceCoefficent |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static StudentTTest.ConfidenceCoefficent[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final StudentTTest.ConfidenceCoefficent _80
public static final StudentTTest.ConfidenceCoefficent _90
public static final StudentTTest.ConfidenceCoefficent _95
public static final StudentTTest.ConfidenceCoefficent _98
public static final StudentTTest.ConfidenceCoefficent _99
public static final StudentTTest.ConfidenceCoefficent _998
Method Detail |
---|
public static StudentTTest.ConfidenceCoefficent[] values()
for (StudentTTest.ConfidenceCoefficent c : StudentTTest.ConfidenceCoefficent.values()) System.out.println(c);
public static StudentTTest.ConfidenceCoefficent valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |