MeasurementLocation enum
Represents anatomical locations for temperature measurements as defined by OpenMHealth.
These measurement locations conform to standardized body temperature measurement sites used in clinical and consumer health contexts.
Values
- axillary → const MeasurementLocation
-
The armpit region.
const MeasurementLocation("axillary") - finger → const MeasurementLocation
-
A digit on the hand.
const MeasurementLocation("finger") - forehead → const MeasurementLocation
-
The front part of the head.
const MeasurementLocation("forehead") - oral → const MeasurementLocation
-
Inside the mouth, typically under the tongue.
const MeasurementLocation("oral") - rectal → const MeasurementLocation
-
Inside the rectum.
const MeasurementLocation("rectal") - temporalArtery → const MeasurementLocation
-
The temporal artery, located on the side of the head.
const MeasurementLocation("temporal artery") - toe → const MeasurementLocation
-
A digit on the foot.
const MeasurementLocation("toe") - tympanic → const MeasurementLocation
-
The ear canal, near the eardrum.
const MeasurementLocation("tympanic") - wrist → const MeasurementLocation
-
The area where the hand meets the arm.
const MeasurementLocation("wrist") - vagina → const MeasurementLocation
-
Inside the vagina.
const MeasurementLocation("vagina")
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → String
-
The string representation of the measurement location as defined by OpenMHealth.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Converts this measurement location to its JSON representation.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
MeasurementLocation> - A constant List of the values in this enum, in order of their declaration.