Enum DiffAna.DispersionFitType
- java.lang.Object
-
- java.lang.Enum<DiffAna.DispersionFitType>
-
- fr.ens.biologie.genomique.eoulsan.modules.diffana.DiffAna.DispersionFitType
-
- All Implemented Interfaces:
Serializable
,Comparable<DiffAna.DispersionFitType>
- Enclosing class:
- DiffAna
public static enum DiffAna.DispersionFitType extends Enum<DiffAna.DispersionFitType>
Dispersion estimation fitType enum for DESeq differential analysis
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOCAL
PARAMETRIC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DiffAna.DispersionFitType
getDispEstFitTypeFromName(String name)
Get the Dispersion estimation fit type form its nameString
getName()
Get the dispersion estimation fitType namestatic DiffAna.DispersionFitType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DiffAna.DispersionFitType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAMETRIC
public static final DiffAna.DispersionFitType PARAMETRIC
-
LOCAL
public static final DiffAna.DispersionFitType LOCAL
-
-
Method Detail
-
values
public static DiffAna.DispersionFitType[] 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 (DiffAna.DispersionFitType c : DiffAna.DispersionFitType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiffAna.DispersionFitType 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 nameNullPointerException
- if the argument is null
-
getName
public String getName()
Get the dispersion estimation fitType name- Returns:
- a string with the dispersion estimation fitType name
-
getDispEstFitTypeFromName
public static DiffAna.DispersionFitType getDispEstFitTypeFromName(String name)
Get the Dispersion estimation fit type form its name- Parameters:
name
- dispersion estimation fit type name- Returns:
- a DispersionFitType or null if no DispersionFitType found for the name
-
-