Enum OperationalStatus
- java.lang.Object
-
- java.lang.Enum<OperationalStatus>
-
- org.hl7.fhir.dstu3.model.codesystems.OperationalStatus
-
- All Implemented Interfaces:
Serializable,Comparable<OperationalStatus>
public enum OperationalStatus extends Enum<OperationalStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENTEREDINERRORThe device was entered in error.HWDISCONThe device hardware is disconnected.NOTREADYThe device is not ready.NULLadded to help the parsersOFFThe device is off.ONThe device is fully operational.STANDBYThe device is ready but not actively operating.TRANSDUCDISCONThe device transducer is diconnected.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationalStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static OperationalStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationalStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final OperationalStatus OFF
The device is off.
-
ON
public static final OperationalStatus ON
The device is fully operational.
-
NOTREADY
public static final OperationalStatus NOTREADY
The device is not ready.
-
STANDBY
public static final OperationalStatus STANDBY
The device is ready but not actively operating.
-
TRANSDUCDISCON
public static final OperationalStatus TRANSDUCDISCON
The device transducer is diconnected.
-
HWDISCON
public static final OperationalStatus HWDISCON
The device hardware is disconnected.
-
ENTEREDINERROR
public static final OperationalStatus ENTEREDINERROR
The device was entered in error.
-
NULL
public static final OperationalStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static OperationalStatus[] 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 (OperationalStatus c : OperationalStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationalStatus 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 OperationalStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-