Enum MeasurementKind
- java.lang.Object
- 
- java.lang.Enum<MeasurementKind>
- 
- ubic.gemma.model.common.measurement.MeasurementKind
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<MeasurementKind>
 
 public enum MeasurementKind extends Enum<MeasurementKind> 
- 
- 
Field SummaryFields Modifier and Type Field Description static MeasurementKindCONCENTRATIONAlias for readability.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static MeasurementKindvalueOf(String name)Returns the enum constant of this type with the specified name.static MeasurementKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
TIMEpublic static final MeasurementKind TIME 
 - 
DISTANCEpublic static final MeasurementKind DISTANCE 
 - 
TEMPERATUREpublic static final MeasurementKind TEMPERATURE 
 - 
QUANTITYpublic static final MeasurementKind QUANTITY 
 - 
MASSpublic static final MeasurementKind MASS 
 - 
VOLUMEpublic static final MeasurementKind VOLUME 
 - 
CONCpublic static final MeasurementKind CONC Concentration
 - 
OTHERpublic static final MeasurementKind OTHER 
 - 
COUNTpublic static final MeasurementKind COUNT 
 
- 
 - 
Field Detail- 
CONCENTRATIONpublic static final MeasurementKind CONCENTRATION Alias for readability.
 
- 
 - 
Method Detail- 
valuespublic static MeasurementKind[] 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 (MeasurementKind c : MeasurementKind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MeasurementKind 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
 
 
- 
 
-