Enum CarePlan.CarePlanActivityKind

    • Enum Constant Detail

      • APPOINTMENT

        public static final CarePlan.CarePlanActivityKind APPOINTMENT
        A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s).
      • COMMUNICATIONREQUEST

        public static final CarePlan.CarePlanActivityKind COMMUNICATIONREQUEST
        A request to convey information; e.g. the CDS system proposes that an alert be sent to a responsible provider, the CDS system proposes that the public health agency be notified about a reportable condition.
      • DEVICEREQUEST

        public static final CarePlan.CarePlanActivityKind DEVICEREQUEST
        Represents a request a device to be provided to a specific patient. The device may be an implantable device to be subsequently implanted, or an external assistive device, such as a walker, to be delivered and subsequently be used.
      • MEDICATIONREQUEST

        public static final CarePlan.CarePlanActivityKind MEDICATIONREQUEST
        An order or request for both supply of the medication and the instructions for administration of the medication to a patient. The resource is called \"MedicationRequest\" rather than \"MedicationPrescription\" or \"MedicationOrder\" to generalize the use across inpatient and outpatient settings, including care plans, etc., and to harmonize with workflow patterns.
    • Method Detail

      • values

        public static CarePlan.CarePlanActivityKind[] 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 (CarePlan.CarePlanActivityKind c : CarePlan.CarePlanActivityKind.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CarePlan.CarePlanActivityKind 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 name
        NullPointerException - if the argument is null