Enum ClinicalImpressionStatus
- java.lang.Object
-
- java.lang.Enum<ClinicalImpressionStatus>
-
- org.hl7.fhir.dstu2016may.model.codesystems.ClinicalImpressionStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ClinicalImpressionStatus>
public enum ClinicalImpressionStatus extends Enum<ClinicalImpressionStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETEDThe assessment is done and the results are final.ENTEREDINERRORThis assessment was never actually done and the record is erroneous (e.g.INPROGRESSThe assessment is still on-going and results are not yet final.NULLadded to help the parsers
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClinicalImpressionStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ClinicalImpressionStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ClinicalImpressionStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INPROGRESS
public static final ClinicalImpressionStatus INPROGRESS
The assessment is still on-going and results are not yet final.
-
COMPLETED
public static final ClinicalImpressionStatus COMPLETED
The assessment is done and the results are final.
-
ENTEREDINERROR
public static final ClinicalImpressionStatus ENTEREDINERROR
This assessment was never actually done and the record is erroneous (e.g. Wrong patient).
-
NULL
public static final ClinicalImpressionStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static ClinicalImpressionStatus[] 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 (ClinicalImpressionStatus c : ClinicalImpressionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClinicalImpressionStatus 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 ClinicalImpressionStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-