Enum EncounterDischargeDisposition
- java.lang.Object
-
- java.lang.Enum<EncounterDischargeDisposition>
-
- org.hl7.fhir.r4.model.codesystems.EncounterDischargeDisposition
-
- All Implemented Interfaces:
Serializable,Comparable<EncounterDischargeDisposition>
public enum EncounterDischargeDisposition extends Enum<EncounterDischargeDisposition>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AADVICEThe patient self discharged against medical advice.ALTHOMEThe patient was discharged and has indicated that they are going to return home afterwards, but not the patient's home - e.g.EXPThe patient has deceased during this encounter.HOMEThe patient was dicharged and has indicated that they are going to return home afterwards.HOSPThe patient has been discharged into palliative care.LONGThe patient has been discharged into long-term care where is likely to be monitored through an ongoing episode-of-care.NULLadded to help the parsersOTHThe discharge disposition has not otherwise defined.OTHERHCFThe patient was transferred to another healthcare facility.PSYThe patient has been transferred to a psychiatric facility.REHABThe patient was discharged and is to receive post acute care rehabilitation services.SNFThe patient has been discharged to a skilled nursing facility for the patient to receive additional care.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EncounterDischargeDispositionfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static EncounterDischargeDispositionvalueOf(String name)Returns the enum constant of this type with the specified name.static EncounterDischargeDisposition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOME
public static final EncounterDischargeDisposition HOME
The patient was dicharged and has indicated that they are going to return home afterwards.
-
ALTHOME
public static final EncounterDischargeDisposition ALTHOME
The patient was discharged and has indicated that they are going to return home afterwards, but not the patient's home - e.g. a family member's home.
-
OTHERHCF
public static final EncounterDischargeDisposition OTHERHCF
The patient was transferred to another healthcare facility.
-
HOSP
public static final EncounterDischargeDisposition HOSP
The patient has been discharged into palliative care.
-
LONG
public static final EncounterDischargeDisposition LONG
The patient has been discharged into long-term care where is likely to be monitored through an ongoing episode-of-care.
-
AADVICE
public static final EncounterDischargeDisposition AADVICE
The patient self discharged against medical advice.
-
EXP
public static final EncounterDischargeDisposition EXP
The patient has deceased during this encounter.
-
PSY
public static final EncounterDischargeDisposition PSY
The patient has been transferred to a psychiatric facility.
-
REHAB
public static final EncounterDischargeDisposition REHAB
The patient was discharged and is to receive post acute care rehabilitation services.
-
SNF
public static final EncounterDischargeDisposition SNF
The patient has been discharged to a skilled nursing facility for the patient to receive additional care.
-
OTH
public static final EncounterDischargeDisposition OTH
The discharge disposition has not otherwise defined.
-
NULL
public static final EncounterDischargeDisposition NULL
added to help the parsers
-
-
Method Detail
-
values
public static EncounterDischargeDisposition[] 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 (EncounterDischargeDisposition c : EncounterDischargeDisposition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncounterDischargeDisposition 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 EncounterDischargeDisposition fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-