Enum MeasurementPrinciple
- java.lang.Object
-
- java.lang.Enum<MeasurementPrinciple>
-
- org.hl7.fhir.dstu3.model.codesystems.MeasurementPrinciple
-
- All Implemented Interfaces:
Serializable,Comparable<MeasurementPrinciple>
public enum MeasurementPrinciple extends Enum<MeasurementPrinciple>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACOUSTICALMeasurement is done using the acoustical principle.BIOLOGICALMeasurement is done using the biological principle.CHEMICALMeasurement is done using the chemical principle.ELECTRICALMeasurement is done using the electrical principle.IMPEDANCEMeasurement is done using the impedance principle.MANUALMeasurement is done using the manual principle.MECHANICALMeasurement is done using the mechanical principle.NUCLEARMeasurement is done using the nuclear principle.NULLadded to help the parsersOPTICALMeasurement is done using the optical principle.OTHERMeasurement principle isn't in the list.THERMALMeasurement is done using the thermal principle.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MeasurementPrinciplefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static MeasurementPrinciplevalueOf(String name)Returns the enum constant of this type with the specified name.static MeasurementPrinciple[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OTHER
public static final MeasurementPrinciple OTHER
Measurement principle isn't in the list.
-
CHEMICAL
public static final MeasurementPrinciple CHEMICAL
Measurement is done using the chemical principle.
-
ELECTRICAL
public static final MeasurementPrinciple ELECTRICAL
Measurement is done using the electrical principle.
-
IMPEDANCE
public static final MeasurementPrinciple IMPEDANCE
Measurement is done using the impedance principle.
-
NUCLEAR
public static final MeasurementPrinciple NUCLEAR
Measurement is done using the nuclear principle.
-
OPTICAL
public static final MeasurementPrinciple OPTICAL
Measurement is done using the optical principle.
-
THERMAL
public static final MeasurementPrinciple THERMAL
Measurement is done using the thermal principle.
-
BIOLOGICAL
public static final MeasurementPrinciple BIOLOGICAL
Measurement is done using the biological principle.
-
MECHANICAL
public static final MeasurementPrinciple MECHANICAL
Measurement is done using the mechanical principle.
-
ACOUSTICAL
public static final MeasurementPrinciple ACOUSTICAL
Measurement is done using the acoustical principle.
-
MANUAL
public static final MeasurementPrinciple MANUAL
Measurement is done using the manual principle.
-
NULL
public static final MeasurementPrinciple NULL
added to help the parsers
-
-
Method Detail
-
values
public static MeasurementPrinciple[] 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 (MeasurementPrinciple c : MeasurementPrinciple.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeasurementPrinciple 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
-
fromCode
public static MeasurementPrinciple fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-