Enum EncounterStatus

    • Enum Constant Detail

      • ARRIVED

        public static final EncounterStatus ARRIVED
        The Patient is present for the encounter, however is not currently meeting with a practitioner.
      • TRIAGED

        public static final EncounterStatus TRIAGED
        The patient has been assessed for the priority of their treatment based on the severity of their condition.
      • INPROGRESS

        public static final EncounterStatus INPROGRESS
        The Encounter has begun and the patient is present / the practitioner and the patient are meeting.
      • ONLEAVE

        public static final EncounterStatus ONLEAVE
        The Encounter has begun, but the patient is temporarily on leave.
      • UNKNOWN

        public static final EncounterStatus UNKNOWN
        The encounter status is unknown. Note that "unknown" is a value of last resort and every attempt should be made to provide a meaningful value other than "unknown".
    • Method Detail

      • values

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

        public static EncounterStatus 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
      • fromCode

        public static EncounterStatus fromCode​(String codeString)
                                        throws org.hl7.fhir.exceptions.FHIRException
        Throws:
        org.hl7.fhir.exceptions.FHIRException