Package net.sf.basedb.core
Enum ReporterCloneBatcher.CloneSource
- java.lang.Object
-
- java.lang.Enum<ReporterCloneBatcher.CloneSource>
-
- 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
Enum Constants Enum Constant Description 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.
-
Constructor Summary
Constructors Modifier Constructor Description private
CloneSource()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-