Enum AppointmentStatus.ValueSet
- java.lang.Object
-
- java.lang.Enum<AppointmentStatus.ValueSet>
-
- com.ibm.fhir.model.type.code.AppointmentStatus.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<AppointmentStatus.ValueSet>
- Enclosing class:
- AppointmentStatus
public static enum AppointmentStatus.ValueSet extends Enum<AppointmentStatus.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARRIVEDArrivedBOOKEDBookedCANCELLEDCancelledCHECKED_INChecked InENTERED_IN_ERROREntered in errorFULFILLEDFulfilledNOSHOWNo ShowPENDINGPendingPROPOSEDProposedWAITLISTWaitlisted
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AppointmentStatus.ValueSetfrom(String value)Factory method for creating AppointmentStatus.ValueSet values from a passed string value.Stringvalue()static AppointmentStatus.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static AppointmentStatus.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final AppointmentStatus.ValueSet PROPOSED
ProposedNone 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
PendingSome or all of the participant(s) have not finalized their acceptance of the appointment request.
-
BOOKED
public static final AppointmentStatus.ValueSet BOOKED
BookedAll 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
ArrivedThe patient/patients has/have arrived and is/are waiting to be seen.
-
FULFILLED
public static final AppointmentStatus.ValueSet FULFILLED
FulfilledThe 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.
-
CANCELLED
public static final AppointmentStatus.ValueSet CANCELLED
CancelledThe appointment has been cancelled.
-
NOSHOW
public static final AppointmentStatus.ValueSet NOSHOW
No ShowSome 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 errorThis instance should not have been part of this patient's medical record.
-
CHECKED_IN
public static final AppointmentStatus.ValueSet CHECKED_IN
Checked InWhen 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
WaitlistedThe 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 nameNullPointerException- 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
-
-