Enum Class TechnologyType
- All Implemented Interfaces:
Serializable, Comparable<TechnologyType>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates this platform can be used in either a one- or two- channel mode.Indicates that this "platform" is just a list of genes (we use this for RNA-seq)Indicates this platform uses one channel and measurements are non-ratiometric (e.g.We don't knowIndicate the platform is based on sequencing (e.g.Indicates this platform uses two channels and expression measurements are ratios. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EnumSet<TechnologyType> Enumeration of microarray platforms. -
Method Summary
Modifier and TypeMethodDescriptionstatic TechnologyTypeReturns the enum constant of this class with the specified name.static TechnologyType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TWOCOLOR
Indicates this platform uses two channels and expression measurements are ratios. -
DUALMODE
Indicates this platform can be used in either a one- or two- channel mode. -
ONECOLOR
Indicates this platform uses one channel and measurements are non-ratiometric (e.g. Affymetrix oligo arrays) -
SEQUENCING
Indicate the platform is based on sequencing (e.g. Illumina short reads, SAGE, OxfordNanopore). However, once we process RNA-seq data it ends up on a GENELIST platform. -
GENELIST
Indicates that this "platform" is just a list of genes (we use this for RNA-seq) -
OTHER
We don't know
-
-
Field Details
-
MICROARRAY
Enumeration of microarray platforms.
-
-
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
-