Enum AppointmentStatus.ValueSet

    • Enum Constant Detail

      • PROPOSED

        public static final AppointmentStatus.ValueSet PROPOSED
        Proposed

        None of the participant(s) have finalized their acceptance of the appointment request, and the start/end time might not be set yet.

      • PENDING

        public static final AppointmentStatus.ValueSet PENDING
        Pending

        Some or all of the participant(s) have not finalized their acceptance of the appointment request.

      • BOOKED

        public static final AppointmentStatus.ValueSet BOOKED
        Booked

        All participant(s) have been considered and the appointment is confirmed to go ahead at the date/times specified.

      • ARRIVED

        public static final AppointmentStatus.ValueSet ARRIVED
        Arrived

        The patient/patients has/have arrived and is/are waiting to be seen.

      • FULFILLED

        public static final AppointmentStatus.ValueSet FULFILLED
        Fulfilled

        The planning stages of the appointment are now complete, the encounter resource will exist and will track further status changes. Note that an encounter may exist before the appointment status is fulfilled for many reasons.

      • NOSHOW

        public static final AppointmentStatus.ValueSet NOSHOW
        No Show

        Some or all of the participant(s) have not/did not appear for the appointment (usually the patient).

      • ENTERED_IN_ERROR

        public static final AppointmentStatus.ValueSet ENTERED_IN_ERROR
        Entered in error

        This instance should not have been part of this patient's medical record.

      • CHECKED_IN

        public static final AppointmentStatus.ValueSet CHECKED_IN
        Checked In

        When checked in, all pre-encounter administrative work is complete, and the encounter may begin. (where multiple patients are involved, they are all present).

      • WAITLIST

        public static final AppointmentStatus.ValueSet WAITLIST
        Waitlisted

        The appointment has been placed on a waitlist, to be scheduled/confirmed in the future when a slot/service is available.

        A specific time might or might not be pre-allocated.

    • Method Detail

      • values

        public static AppointmentStatus.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 (AppointmentStatus.ValueSet c : AppointmentStatus.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 AppointmentStatus.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 AppointmentStatus.ValueSet from​(String value)
        Factory method for creating AppointmentStatus.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