3.2.1: 2012-12-13

net.sf.basedb.core
Enum ReporterCloneBatcher.CloneSource

java.lang.Object
  extended by java.lang.Enum<ReporterCloneBatcher.CloneSource>
      extended by net.sf.basedb.core.ReporterCloneBatcher.CloneSource
All Implemented Interfaces:
Serializable, Comparable<ReporterCloneBatcher.CloneSource>
Enclosing class:
ReporterCloneBatcher

public static enum ReporterCloneBatcher.CloneSource
extends Enum<ReporterCloneBatcher.CloneSource>

Specifies which source table to use for finding out which reporters that are part of the current experiment.


Enum Constant Summary
AUTO
          Select VIRTUAL if the experiment has position data in the virtual database, otherwise the RAW options used.
RAW
          Use the raw data for all raw bioassays in the experiment as the source for reporters.
VIRTUAL
          Use the position-to-reporter mapping in the experiment.
 
Method Summary
static ReporterCloneBatcher.CloneSource valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ReporterCloneBatcher.CloneSource[] 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

AUTO

public static final ReporterCloneBatcher.CloneSource AUTO
Select VIRTUAL if the experiment has position data in the virtual database, otherwise the RAW options used.


RAW

public static final ReporterCloneBatcher.CloneSource RAW
Use the raw data for all raw bioassays in the experiment as the source for reporters.


VIRTUAL

public static final ReporterCloneBatcher.CloneSource VIRTUAL
Use the position-to-reporter mapping in the experiment.

Method Detail

values

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

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

valueOf

public static ReporterCloneBatcher.CloneSource 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 name
NullPointerException - if the argument is null

3.2.1: 2012-12-13