gov.nih.nci.caarray.services.bioassaydata.descriptor
Enum ScaleEnum
java.lang.Object
java.lang.Enum<ScaleEnum>
gov.nih.nci.caarray.services.bioassaydata.descriptor.ScaleEnum
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ScaleEnum>
public enum ScaleEnum
- extends java.lang.Enum<ScaleEnum>
Scale values used in QuantitationTypeDescriptors.
- Author:
- ETavela
Method Summary |
java.lang.String |
getOntologyEntryValue()
|
static ScaleEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ScaleEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
LINEAR_SCALE
public static final ScaleEnum LINEAR_SCALE
LOG_BASE_10
public static final ScaleEnum LOG_BASE_10
LOG_BASE_2
public static final ScaleEnum LOG_BASE_2
LOG_BASE_E
public static final ScaleEnum LOG_BASE_E
UNSCALED
public static final ScaleEnum UNSCALED
values
public static final ScaleEnum[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ScaleEnum c : ScaleEnum.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ScaleEnum 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
getOntologyEntryValue
public java.lang.String getOntologyEntryValue()