org.biomage.BioAssayData
Enum SourceType

java.lang.Object
  extended by java.lang.Enum<SourceType>
      extended by org.biomage.BioAssayData.SourceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SourceType>

public enum SourceType
extends java.lang.Enum<SourceType>

Indicates the source of a BioAssayCube.

Author:
ETavela

Enum Constant Summary
AFFYMETRIX_CEL_FILE
           
AFFYMETRIX_CHP_FILE
           
AGILENT_FEATUREEXTRACTION_TXT_FILE
           
BIODISCOVERY_IMAGENE_TXT_FILE
           
GENEPIX_GPR_FILE
           
ILLUMINA_CSV_FILE
           
TAB_DELIMITED_FILE
           
UCSF_SPOT_GPR_FILE
           
WHITESPACE_DELIMITED_FILE
           
 
Method Summary
 java.lang.String getCreatingSoftware()
           
 java.lang.String getExtension()
           
static SourceType getFor(java.lang.String creatingSoftware, java.lang.String extension)
           
static SourceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SourceType[] 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
 

Enum Constant Detail

AFFYMETRIX_CEL_FILE

public static final SourceType AFFYMETRIX_CEL_FILE

AFFYMETRIX_CHP_FILE

public static final SourceType AFFYMETRIX_CHP_FILE

GENEPIX_GPR_FILE

public static final SourceType GENEPIX_GPR_FILE

UCSF_SPOT_GPR_FILE

public static final SourceType UCSF_SPOT_GPR_FILE

BIODISCOVERY_IMAGENE_TXT_FILE

public static final SourceType BIODISCOVERY_IMAGENE_TXT_FILE

AGILENT_FEATUREEXTRACTION_TXT_FILE

public static final SourceType AGILENT_FEATUREEXTRACTION_TXT_FILE

ILLUMINA_CSV_FILE

public static final SourceType ILLUMINA_CSV_FILE

WHITESPACE_DELIMITED_FILE

public static final SourceType WHITESPACE_DELIMITED_FILE

TAB_DELIMITED_FILE

public static final SourceType TAB_DELIMITED_FILE
Method Detail

values

public static final SourceType[] 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(SourceType c : SourceType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static SourceType 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

getFor

public static SourceType getFor(java.lang.String creatingSoftware,
                                java.lang.String extension)

getCreatingSoftware

public java.lang.String getCreatingSoftware()

getExtension

public java.lang.String getExtension()