gov.nih.nci.caarray.domain.file
Enum UnsupportedAffymetrixCdfFiles

java.lang.Object
  extended by java.lang.Enum<UnsupportedAffymetrixCdfFiles>
      extended by gov.nih.nci.caarray.domain.file.UnsupportedAffymetrixCdfFiles
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UnsupportedAffymetrixCdfFiles>

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

A list of Affymetrix CDF files that the AffxFusion jar (and therefore caArray) cannot handle. See GForge defect 11922 at https://gforge.nci.nih.gov/tracker/?group_id=305&atid=1344&func=detail&aid=11922

Author:
Steve Lustbader

Enum Constant Summary
HUMAN_EXON_1_0_ST
          Human Exon 1.0 ST design file.
HUMAN_EXON_1_0_ST_ZIP
          Human Exon 1.0 ST design file (zipped).
MOUSE_EXON_1_0_ST
          Mouse Exon 1.0 ST design file.
MOUSE_EXON_1_0_ST_ZIP
          Mouse Exon 1.0 ST design file (zipped).
RAT_EXON_1_0_ST
          Rat Exon 1.0 ST design file.
RAT_EXON_1_0_ST_ZIP
          Rat Exon 1.0 ST design file (zipped).
 
Method Summary
 java.lang.String getFilename()
           
static boolean isUnsupported(java.lang.String filename)
          Check if the given filename is on the list of unsupported files.
static UnsupportedAffymetrixCdfFiles valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UnsupportedAffymetrixCdfFiles[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

HUMAN_EXON_1_0_ST

public static final UnsupportedAffymetrixCdfFiles HUMAN_EXON_1_0_ST
Human Exon 1.0 ST design file.


HUMAN_EXON_1_0_ST_ZIP

public static final UnsupportedAffymetrixCdfFiles HUMAN_EXON_1_0_ST_ZIP
Human Exon 1.0 ST design file (zipped).


MOUSE_EXON_1_0_ST

public static final UnsupportedAffymetrixCdfFiles MOUSE_EXON_1_0_ST
Mouse Exon 1.0 ST design file.


MOUSE_EXON_1_0_ST_ZIP

public static final UnsupportedAffymetrixCdfFiles MOUSE_EXON_1_0_ST_ZIP
Mouse Exon 1.0 ST design file (zipped).


RAT_EXON_1_0_ST

public static final UnsupportedAffymetrixCdfFiles RAT_EXON_1_0_ST
Rat Exon 1.0 ST design file.


RAT_EXON_1_0_ST_ZIP

public static final UnsupportedAffymetrixCdfFiles RAT_EXON_1_0_ST_ZIP
Rat Exon 1.0 ST design file (zipped).

Method Detail

values

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

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

valueOf

public static UnsupportedAffymetrixCdfFiles 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
java.lang.NullPointerException - if the argument is null

getFilename

public java.lang.String getFilename()
Returns:
the filename

isUnsupported

public static boolean isUnsupported(java.lang.String filename)
Check if the given filename is on the list of unsupported files.

Parameters:
filename - filename to check
Returns:
true if the filename is not supported, false otherwise