Enum ExDiagnosistype
- java.lang.Object
-
- java.lang.Enum<ExDiagnosistype>
-
- org.hl7.fhir.r4.model.codesystems.ExDiagnosistype
-
- All Implemented Interfaces:
Serializable,Comparable<ExDiagnosistype>
public enum ExDiagnosistype extends Enum<ExDiagnosistype>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMITTINGThe diagnosis given as the reason why the patient was admitted to the hospital.CLINICALA diagnosis made on the basis of medical signs and patient-reported symptoms, rather than diagnostic tests.DIFFERENTIALOne of a set of the possible diagnoses that could be connected to the signs, symptoms, and lab findings.DISCHARGEThe diagnosis given when the patient is discharged from the hospital.LABORATORYA diagnosis based significantly on laboratory reports or test results, rather than the physical examination of the patient.NULLadded to help the parsersNURSINGA diagnosis which identifies people's responses to situations in their lives, such as a readiness to change or a willingness to accept assistance.PRENATALA diagnosis determined prior to birth.PRINCIPALThe single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.RADIOLOGYA diagnosis based primarily on the results from medical imaging studies.REMOTEA diagnosis determined using telemedicine techniques.RETROSPECTIVEThe labeling of an illness in a specific historical event using modern knowledge, methods and disease classifications.SELFA diagnosis determined by the patient.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExDiagnosistypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ExDiagnosistypevalueOf(String name)Returns the enum constant of this type with the specified name.static ExDiagnosistype[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADMITTING
public static final ExDiagnosistype ADMITTING
The diagnosis given as the reason why the patient was admitted to the hospital.
-
CLINICAL
public static final ExDiagnosistype CLINICAL
A diagnosis made on the basis of medical signs and patient-reported symptoms, rather than diagnostic tests.
-
DIFFERENTIAL
public static final ExDiagnosistype DIFFERENTIAL
One of a set of the possible diagnoses that could be connected to the signs, symptoms, and lab findings.
-
DISCHARGE
public static final ExDiagnosistype DISCHARGE
The diagnosis given when the patient is discharged from the hospital.
-
LABORATORY
public static final ExDiagnosistype LABORATORY
A diagnosis based significantly on laboratory reports or test results, rather than the physical examination of the patient.
-
NURSING
public static final ExDiagnosistype NURSING
A diagnosis which identifies people's responses to situations in their lives, such as a readiness to change or a willingness to accept assistance.
-
PRENATAL
public static final ExDiagnosistype PRENATAL
A diagnosis determined prior to birth.
-
PRINCIPAL
public static final ExDiagnosistype PRINCIPAL
The single medical diagnosis that is most relevant to the patient's chief complaint or need for treatment.
-
RADIOLOGY
public static final ExDiagnosistype RADIOLOGY
A diagnosis based primarily on the results from medical imaging studies.
-
REMOTE
public static final ExDiagnosistype REMOTE
A diagnosis determined using telemedicine techniques.
-
RETROSPECTIVE
public static final ExDiagnosistype RETROSPECTIVE
The labeling of an illness in a specific historical event using modern knowledge, methods and disease classifications.
-
SELF
public static final ExDiagnosistype SELF
A diagnosis determined by the patient.
-
NULL
public static final ExDiagnosistype NULL
added to help the parsers
-
-
Method Detail
-
values
public static ExDiagnosistype[] 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 (ExDiagnosistype c : ExDiagnosistype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExDiagnosistype 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 ExDiagnosistype fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-