Package org.hl7.fhir.r4.model
Enum DeviceMetric.DeviceMetricOperationalStatus
- java.lang.Object
-
- java.lang.Enum<DeviceMetric.DeviceMetricOperationalStatus>
-
- org.hl7.fhir.r4.model.DeviceMetric.DeviceMetricOperationalStatus
-
- All Implemented Interfaces:
Serializable,Comparable<DeviceMetric.DeviceMetricOperationalStatus>
- Enclosing class:
- DeviceMetric
public static enum DeviceMetric.DeviceMetricOperationalStatus extends Enum<DeviceMetric.DeviceMetricOperationalStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENTEREDINERRORThe DeviceMetric was entered in error.NULLadded to help the parsers with the generic typesOFFThe DeviceMetric is not operating.ONThe DeviceMetric is operating and will generate DeviceObservations.STANDBYThe DeviceMetric is operating, but will not generate any DeviceObservations.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeviceMetric.DeviceMetricOperationalStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static DeviceMetric.DeviceMetricOperationalStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceMetric.DeviceMetricOperationalStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ON
public static final DeviceMetric.DeviceMetricOperationalStatus ON
The DeviceMetric is operating and will generate DeviceObservations.
-
OFF
public static final DeviceMetric.DeviceMetricOperationalStatus OFF
The DeviceMetric is not operating.
-
STANDBY
public static final DeviceMetric.DeviceMetricOperationalStatus STANDBY
The DeviceMetric is operating, but will not generate any DeviceObservations.
-
ENTEREDINERROR
public static final DeviceMetric.DeviceMetricOperationalStatus ENTEREDINERROR
The DeviceMetric was entered in error.
-
NULL
public static final DeviceMetric.DeviceMetricOperationalStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static DeviceMetric.DeviceMetricOperationalStatus[] 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 (DeviceMetric.DeviceMetricOperationalStatus c : DeviceMetric.DeviceMetricOperationalStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceMetric.DeviceMetricOperationalStatus 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 DeviceMetric.DeviceMetricOperationalStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-