Enum CarePlanActivityCategory
- java.lang.Object
-
- java.lang.Enum<CarePlanActivityCategory>
-
- org.hl7.fhir.dstu3.model.codesystems.CarePlanActivityCategory
-
- All Implemented Interfaces:
Serializable,Comparable<CarePlanActivityCategory>
public enum CarePlanActivityCategory extends Enum<CarePlanActivityCategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIETPlan for the patient to consume food of a specified natureDRUGPlan for the patient to consume/receive a drug, vaccine or other productENCOUNTERPlan to meet or communicate with the patient (in-patient, out-patient, phone call, etc.)NULLadded to help the parsersOBSERVATIONPlan to capture information about a patient (vitals, labs, diagnostic images, etc.)OTHERSome other form of actionPROCEDUREPlan to modify the patient in some way (surgery, physiotherapy, education, counseling, etc.)SUPPLYPlan to provide something to the patient (medication, medical supply, etc.)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CarePlanActivityCategoryfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CarePlanActivityCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static CarePlanActivityCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIET
public static final CarePlanActivityCategory DIET
Plan for the patient to consume food of a specified nature
-
DRUG
public static final CarePlanActivityCategory DRUG
Plan for the patient to consume/receive a drug, vaccine or other product
-
ENCOUNTER
public static final CarePlanActivityCategory ENCOUNTER
Plan to meet or communicate with the patient (in-patient, out-patient, phone call, etc.)
-
OBSERVATION
public static final CarePlanActivityCategory OBSERVATION
Plan to capture information about a patient (vitals, labs, diagnostic images, etc.)
-
PROCEDURE
public static final CarePlanActivityCategory PROCEDURE
Plan to modify the patient in some way (surgery, physiotherapy, education, counseling, etc.)
-
SUPPLY
public static final CarePlanActivityCategory SUPPLY
Plan to provide something to the patient (medication, medical supply, etc.)
-
OTHER
public static final CarePlanActivityCategory OTHER
Some other form of action
-
NULL
public static final CarePlanActivityCategory NULL
added to help the parsers
-
-
Method Detail
-
values
public static CarePlanActivityCategory[] 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 (CarePlanActivityCategory c : CarePlanActivityCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CarePlanActivityCategory 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 CarePlanActivityCategory fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-