Enum EncounterStatus.ValueSet

    • Enum Constant Detail

      • ARRIVED

        public static final EncounterStatus.ValueSet ARRIVED
        Arrived

        The Patient is present for the encounter, however is not currently meeting with a practitioner.

      • TRIAGED

        public static final EncounterStatus.ValueSet TRIAGED
        Triaged

        The patient has been assessed for the priority of their treatment based on the severity of their condition.

      • IN_PROGRESS

        public static final EncounterStatus.ValueSet IN_PROGRESS
        In Progress

        The Encounter has begun and the patient is present / the practitioner and the patient are meeting.

      • ONLEAVE

        public static final EncounterStatus.ValueSet ONLEAVE
        On Leave

        The Encounter has begun, but the patient is temporarily on leave.

      • CANCELLED

        public static final EncounterStatus.ValueSet CANCELLED
        Cancelled

        The Encounter has ended before it has begun.

      • ENTERED_IN_ERROR

        public static final EncounterStatus.ValueSet ENTERED_IN_ERROR
        Entered in Error

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

      • UNKNOWN

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