|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExperimentDesignNodeType>
gov.nih.nci.caarray.domain.project.ExperimentDesignNodeType
public enum ExperimentDesignNodeType
An enumeration of different type of nodes in the experiment design graph. these correspond to the node types in an SDRF in mage tab terminology.
Enum Constant Summary | |
---|---|
EXTRACT
The Extract node type. |
|
HYBRIDIZATION
The Hybridization node type. |
|
LABELED_EXTRACT
The Labeled Extract node type. |
|
SAMPLE
The Sample node type. |
|
SOURCE
The Source node type. |
Method Summary | |
---|---|
ExperimentDesignNodeType |
getPredecesorType()
|
ExperimentDesignNodeType |
getSuccessorType()
|
boolean |
isDirectPredecessorOf(ExperimentDesignNodeType type)
Return whether this node type is to the immediate left of the given node type in a hybridization channel or experiment design graph. |
boolean |
isDirectSuccessorOf(ExperimentDesignNodeType type)
Return whether this node type is immediately to the right of the given node type in a hybridization channel or experiment design graph. |
boolean |
isPredecessorOf(ExperimentDesignNodeType type)
Return whether this node type is to the left of the given node type in a hybridization channel or experiment design graph. |
boolean |
isSuccessorOf(ExperimentDesignNodeType type)
Return whether this node type is to the right of the given node type in a hybridization channel or experiment design graph. |
static ExperimentDesignNodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExperimentDesignNodeType[] |
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 |
---|
public static final ExperimentDesignNodeType SOURCE
public static final ExperimentDesignNodeType SAMPLE
public static final ExperimentDesignNodeType EXTRACT
public static final ExperimentDesignNodeType LABELED_EXTRACT
public static final ExperimentDesignNodeType HYBRIDIZATION
Method Detail |
---|
public static ExperimentDesignNodeType[] values()
for (ExperimentDesignNodeType c : ExperimentDesignNodeType.values()) System.out.println(c);
public static ExperimentDesignNodeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic ExperimentDesignNodeType getSuccessorType()
public ExperimentDesignNodeType getPredecesorType()
public boolean isSuccessorOf(ExperimentDesignNodeType type)
type
- the node type to check
public boolean isDirectSuccessorOf(ExperimentDesignNodeType type)
type
- the node type to check
public boolean isPredecessorOf(ExperimentDesignNodeType type)
type
- the node type to check
public boolean isDirectPredecessorOf(ExperimentDesignNodeType type)
type
- the node type to check
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |