Enum GeoLibraryStrategy
- java.lang.Object
-
- java.lang.Enum<GeoLibraryStrategy>
-
- ubic.gemma.core.loader.expression.geo.model.GeoLibraryStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<GeoLibraryStrategy>
public enum GeoLibraryStrategy extends Enum<GeoLibraryStrategy>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeoLibraryStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static GeoLibraryStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATAC_SEQ
public static final GeoLibraryStrategy ATAC_SEQ
-
BISULFITE_SEQ
public static final GeoLibraryStrategy BISULFITE_SEQ
-
CHIA_PET
public static final GeoLibraryStrategy CHIA_PET
-
CHIP_SEQ
public static final GeoLibraryStrategy CHIP_SEQ
-
DNASE_HYPERSENSITIVITY
public static final GeoLibraryStrategy DNASE_HYPERSENSITIVITY
-
FAIRE_SEQ
public static final GeoLibraryStrategy FAIRE_SEQ
-
HI_C
public static final GeoLibraryStrategy HI_C
-
MDB_SEQ
public static final GeoLibraryStrategy MDB_SEQ
-
MEDIP_SEQ
public static final GeoLibraryStrategy MEDIP_SEQ
-
MIRNA_SEQ
public static final GeoLibraryStrategy MIRNA_SEQ
-
MNASE_SEQ
public static final GeoLibraryStrategy MNASE_SEQ
-
MRE_SEQ
public static final GeoLibraryStrategy MRE_SEQ
-
NCRNA_SEQ
public static final GeoLibraryStrategy NCRNA_SEQ
-
OTHER
public static final GeoLibraryStrategy OTHER
-
RIP_SEQ
public static final GeoLibraryStrategy RIP_SEQ
-
RNA_SEQ
public static final GeoLibraryStrategy RNA_SEQ
-
SCRNA_SEQ
public static final GeoLibraryStrategy SCRNA_SEQ
-
SNRNA_SEQ
public static final GeoLibraryStrategy SNRNA_SEQ
-
SSRNA_SEQ
public static final GeoLibraryStrategy SSRNA_SEQ
-
-
Method Detail
-
values
public static GeoLibraryStrategy[] 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 (GeoLibraryStrategy c : GeoLibraryStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeoLibraryStrategy 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
-
-