public enum ConditionClinicalStatus extends Enum<ConditionClinicalStatus>
ACTIVE
INACTIVE
HISTORY_OF
Enum Constant and Description |
---|
ACTIVE
This is where the patient is currently experiencing the symptoms of the condition or there is evidence of the
condition.
|
HISTORY_OF
Deprecated.
as of 2.6.0
|
INACTIVE
There is where the patient is no longer experiencing the symptoms of the condition or there is no longer
evidence of the condition.
|
RECURRENCE
The Patient is experiencing a re-occurrence or repeating of a previously resolved condition,
e.g. urinary tract infection, pancreatitis, cholangitis, conjunctivitis.
|
RELAPSE
The Patient is experiencing a return of a condition, or signs and symptoms after a period of
improvement or remission, e.g. relapse of cancer, multiple sclerosis, rheumatoid arthritis,
systemic lupus erythematosus, bipolar disorder, [psychotic relapse of] schizophrenia, etc.
|
REMISSION
The Patient is no longer experiencing the symptoms of the condition, but there is a risk
of the symptoms returning.
|
RESOLVED
The Patient is no longer experiencing the symptoms of the condition and there is a
negligible perceived risk of the symptoms returning.
|
Modifier and Type | Method and Description |
---|---|
static ConditionClinicalStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionClinicalStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionClinicalStatus ACTIVE
public static final ConditionClinicalStatus INACTIVE
public static final ConditionClinicalStatus HISTORY_OF
public static final ConditionClinicalStatus RECURRENCE
public static final ConditionClinicalStatus RELAPSE
public static final ConditionClinicalStatus REMISSION
public static final ConditionClinicalStatus RESOLVED
public static ConditionClinicalStatus[] values()
for (ConditionClinicalStatus c : ConditionClinicalStatus.values()) System.out.println(c);
public static ConditionClinicalStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024 OpenMRS Inc.. All rights reserved.