Enum Class ResolveSepsetsDci.Method
java.lang.Object
java.lang.Enum<ResolveSepsetsDci.Method>
edu.cmu.tetrad.search.work_in_progress.ResolveSepsetsDci.Method
- All Implemented Interfaces:
Serializable
,Comparable<ResolveSepsetsDci.Method>
,Constable
- Enclosing class:
ResolveSepsetsDci
A method for combining p values.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription`The average method.The average test method.The fdr method.The fisher method.The fisher method with only available p values.The majority method.The mudholkergeorge method.The mudholkergeorge2 method.The random method.The stouffer method.The tippett method.The wilkinson method. -
Method Summary
Modifier and TypeMethodDescriptionstatic ResolveSepsetsDci.Method
Returns the enum constant of this class with the specified name.static ResolveSepsetsDci.Method[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
fisher
The fisher method. -
fisher2
The fisher method with only available p values. -
tippett
The tippett method. -
worsleyfriston
The wilkinson method. -
stouffer
The stouffer method. -
mudholkergeorge
The mudholkergeorge method. -
mudholkergeorge2
The mudholkergeorge2 method. -
average
`The average method. -
averagetest
The average test method. -
random
The random method. -
fdr
The fdr method. -
majority
The majority method.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-