Enum CarePlanActivityStatus.ValueSet

    • Enum Constant Detail

      • SCHEDULED

        public static final CarePlanActivityStatus.ValueSet SCHEDULED
        Scheduled

        Appointment or other booking has occurred but activity has not yet begun.

      • ON_HOLD

        public static final CarePlanActivityStatus.ValueSet ON_HOLD
        On Hold

        Care plan activity was started but has temporarily ceased with an expectation of resumption at a future time.

      • STOPPED

        public static final CarePlanActivityStatus.ValueSet STOPPED
        Stopped

        The planned care plan activity has been ended prior to completion after the activity was started.

      • UNKNOWN

        public static final CarePlanActivityStatus.ValueSet UNKNOWN
        Unknown

        The current state of the care plan activity is not known. Note: This concept is not to be used for "other" - one of the listed statuses is presumed to apply, but the authoring/source system does not know which one.

      • ENTERED_IN_ERROR

        public static final CarePlanActivityStatus.ValueSet ENTERED_IN_ERROR
        Entered in Error

        Care plan activity was entered in error and voided.

    • Method Detail

      • values

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

        public static CarePlanActivityStatus.ValueSet 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
      • value

        public String value()
        Returns:
        The java.lang.String value of the code represented by this enum
      • from

        public static CarePlanActivityStatus.ValueSet from​(String value)
        Factory method for creating CarePlanActivityStatus.ValueSet values from a passed string value.
        Parameters:
        value - A string that matches one of the allowed code values
        Throws:
        IllegalArgumentException - If the passed string cannot be parsed into an allowed code value