public enum AppointmentStatusEnum extends Enum<AppointmentStatusEnum>
| Enum Constant and Description |
|---|
ARRIVED
Display: Arrived
Code Value: arrived Some of the patients have arrived. |
BOOKED
Display: Booked
Code Value: booked All participant(s) have been considered and the appointment is confirmed to go ahead at the date/times specified. |
CANCELLED
Display: Cancelled
Code Value: cancelled The appointment has been cancelled. |
FULFILLED
Display: Fulfilled
Code Value: fulfilled This appointment has completed and may have resulted in an encounter. |
NO_SHOW
Display: No Show
Code Value: noshow Some or all of the participant(s) have not/did not appear for the appointment (usually the patient). |
PENDING
Display: Pending
Code Value: pending Some or all of the participant(s) have not finalized their acceptance of the appointment request. |
PROPOSED
Display: Proposed
Code Value: proposed None of the participant(s) have finalized their acceptance of the appointment request, and the start/end time may not be set yet. |
| Modifier and Type | Field and Description |
|---|---|
static IValueSetEnumBinder<AppointmentStatusEnum> |
VALUESET_BINDER
Converts codes to their respective enumerated values
|
static String |
VALUESET_IDENTIFIER
Identifier for this Value Set:
|
static String |
VALUESET_NAME
Name for this Value Set:
AppointmentStatus
|
| Modifier and Type | Method and Description |
|---|---|
static AppointmentStatusEnum |
forCode(String theCode)
Returns the enumerated value associated with this code
|
String |
getCode()
Returns the code associated with this enumerated value
|
String |
getSystem()
Returns the code system associated with this enumerated value
|
static AppointmentStatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppointmentStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppointmentStatusEnum PROPOSED
public static final AppointmentStatusEnum PENDING
public static final AppointmentStatusEnum BOOKED
public static final AppointmentStatusEnum ARRIVED
public static final AppointmentStatusEnum FULFILLED
public static final AppointmentStatusEnum CANCELLED
public static final AppointmentStatusEnum NO_SHOW
public static final String VALUESET_IDENTIFIER
public static final String VALUESET_NAME
public static final IValueSetEnumBinder<AppointmentStatusEnum> VALUESET_BINDER
public static AppointmentStatusEnum[] values()
for (AppointmentStatusEnum c : AppointmentStatusEnum.values()) System.out.println(c);
public static AppointmentStatusEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static AppointmentStatusEnum forCode(String theCode)
Copyright © 2014–2016 University Health Network. All rights reserved.