|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DesignElementType>
gov.nih.nci.caarray.domain.data.DesignElementType
public enum DesignElementType
Specifies whether a microarray element refers to a location (feature), probe, or probeset.
Enum Constant Summary | |
---|---|
FEATURE
A specific position on a microarray. |
|
LOGICAL_PROBE
A collection of reporters that together provide the quantification of a single genomic sequence. |
|
PHYSICAL_PROBE
A reporter with a specific location on a microarray that quantities the amount of a specifc genomic sequence. |
Method Summary | |
---|---|
static void |
checkType(java.lang.String value)
Checks to see that the value given is a legal DesignElementType value. |
static DesignElementType |
getByValue(java.lang.String value)
Returns the DesignElementType corresponding to the given value. |
java.lang.String |
getValue()
|
static DesignElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DesignElementType[] |
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 DesignElementType FEATURE
public static final DesignElementType PHYSICAL_PROBE
public static final DesignElementType LOGICAL_PROBE
Method Detail |
---|
public static DesignElementType[] values()
for (DesignElementType c : DesignElementType.values()) System.out.println(c);
public static DesignElementType 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 java.lang.String getValue()
public static DesignElementType getByValue(java.lang.String value)
DesignElementType
corresponding to the given value. Returns null
for null value.
value
- the value to match
public static void checkType(java.lang.String value)
DesignElementType
value.
value
- the value to check;
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |