Package org.snpeff.gsa
Enum ScoreList.ScoreSummary
- java.lang.Object
-
- java.lang.Enum<ScoreList.ScoreSummary>
-
- org.snpeff.gsa.ScoreList.ScoreSummary
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ScoreList.ScoreSummary>
- Enclosing class:
- ScoreList
public static enum ScoreList.ScoreSummary extends java.lang.Enum<ScoreList.ScoreSummary>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVG
AVG_MAX_10
AVG_MIN_10
BONFERRONI
FDR
FISHER_CHI_SQUARE
MAX
MIN
SIMES
SUM
Z_SCORES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScoreList.ScoreSummary
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ScoreList.ScoreSummary[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIN
public static final ScoreList.ScoreSummary MIN
-
AVG
public static final ScoreList.ScoreSummary AVG
-
AVG_MIN_10
public static final ScoreList.ScoreSummary AVG_MIN_10
-
FISHER_CHI_SQUARE
public static final ScoreList.ScoreSummary FISHER_CHI_SQUARE
-
Z_SCORES
public static final ScoreList.ScoreSummary Z_SCORES
-
SIMES
public static final ScoreList.ScoreSummary SIMES
-
BONFERRONI
public static final ScoreList.ScoreSummary BONFERRONI
-
FDR
public static final ScoreList.ScoreSummary FDR
-
MAX
public static final ScoreList.ScoreSummary MAX
-
AVG_MAX_10
public static final ScoreList.ScoreSummary AVG_MAX_10
-
SUM
public static final ScoreList.ScoreSummary SUM
-
-
Method Detail
-
values
public static ScoreList.ScoreSummary[] 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 (ScoreList.ScoreSummary c : ScoreList.ScoreSummary.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScoreList.ScoreSummary valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-