org.android.activityminer.logic.statistics
Enum StudentTTest.ConfidenceCoefficent

Package class diagram package StudentTTest.ConfidenceCoefficent
java.lang.Object
  extended by java.lang.Enum<StudentTTest.ConfidenceCoefficent>
      extended by org.android.activityminer.logic.statistics.StudentTTest.ConfidenceCoefficent
All Implemented Interfaces:
Serializable, Comparable<StudentTTest.ConfidenceCoefficent>
Enclosing class:
StudentTTest

public static enum StudentTTest.ConfidenceCoefficent
extends 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

_80

public static final StudentTTest.ConfidenceCoefficent _80
Index for the 80% two-sided test (significance level of 0.2, column for 0.90).


_90

public static final StudentTTest.ConfidenceCoefficent _90
Index for the 90% two-sided test (significance level of 0.1, column for 0.95).


_95

public static final StudentTTest.ConfidenceCoefficent _95
Index for the 95% two-sided test (significance level of 0.05, column for 0.975).


_98

public static final StudentTTest.ConfidenceCoefficent _98
Index for the 98% two-sided test (significance level of 0.02, column for 0.99).


_99

public static final StudentTTest.ConfidenceCoefficent _99
Index for the 99% two-sided test (significance level of 0.01, column for 0.995).


_998

public static final StudentTTest.ConfidenceCoefficent _998
Index for the 99.8% two-sided test (significance level of 0.002, column for 0.999).

Method Detail

values

public static StudentTTest.ConfidenceCoefficent[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (StudentTTest.ConfidenceCoefficent c : StudentTTest.ConfidenceCoefficent.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StudentTTest.ConfidenceCoefficent valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null