gov.nih.nci.caarray.services.bioassaydata.descriptor
Enum DataTableDescriptor
java.lang.Object
java.lang.Enum<DataTableDescriptor>
gov.nih.nci.caarray.services.bioassaydata.descriptor.DataTableDescriptor
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DataTableDescriptor>
public enum DataTableDescriptor
- extends java.lang.Enum<DataTableDescriptor>
Represents a database table used to store bio assay data.
- Author:
- ETavela
Method Summary |
static DataTableDescriptor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DataTableDescriptor[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
ED_AFFYMETRIX_CEL
public static final DataTableDescriptor ED_AFFYMETRIX_CEL
ED_AFFYMETRIX_CHP
public static final DataTableDescriptor ED_AFFYMETRIX_CHP
ED_GENEPIX_GPR
public static final DataTableDescriptor ED_GENEPIX_GPR
ED_GENEPIX_GPR_3_OR_4_COLOR
public static final DataTableDescriptor ED_GENEPIX_GPR_3_OR_4_COLOR
ED_IMAGENE_TXT
public static final DataTableDescriptor ED_IMAGENE_TXT
ED_AGILENT_TXT
public static final DataTableDescriptor ED_AGILENT_TXT
ED_ILLUMINA_CSV
public static final DataTableDescriptor ED_ILLUMINA_CSV
ED_GENERIC_FEATURE_DATA
public static final DataTableDescriptor ED_GENERIC_FEATURE_DATA
ED_GENERIC_REPORTER_DATA
public static final DataTableDescriptor ED_GENERIC_REPORTER_DATA
ED_GENERIC_COMP_SEQ_DATA
public static final DataTableDescriptor ED_GENERIC_COMP_SEQ_DATA
ED_UCSFSPOT_GPR
public static final DataTableDescriptor ED_UCSFSPOT_GPR
values
public static final DataTableDescriptor[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(DataTableDescriptor c : DataTableDescriptor.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static DataTableDescriptor 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 name