Package ca.uhn.fhir.model.dstu2.valueset
Enum AppointmentStatusEnum
- All Implemented Interfaces:
Serializable
,Comparable<AppointmentStatusEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Arrived
Code Value: arrived Some of the patients have arrived.Display: Booked
Code Value: booked All participant(s) have been considered and the appointment is confirmed to go ahead at the date/times specified.Display: Cancelled
Code Value: cancelled The appointment has been cancelled.Display: Fulfilled
Code Value: fulfilled This appointment has completed and may have resulted in an encounter.Display: No Show
Code Value: noshow Some or all of the participant(s) have not/did not appear for the appointment (usually the patient).Display: Pending
Code Value: pending Some or all of the participant(s) have not finalized their acceptance of the appointment request.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. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<AppointmentStatusEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: AppointmentStatus -
Method Summary
Modifier and TypeMethodDescriptionstatic AppointmentStatusEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic AppointmentStatusEnum
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.
-
Enum Constant Details
-
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. -
PENDING
Display: Pending
Code Value: pending Some or all of the participant(s) have not finalized their acceptance of the appointment request. -
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. -
ARRIVED
Display: Arrived
Code Value: arrived Some of the patients have arrived. -
FULFILLED
Display: Fulfilled
Code Value: fulfilled This appointment has completed and may have resulted in an encounter. -
CANCELLED
Display: Cancelled
Code Value: cancelled The appointment has been cancelled. -
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).
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: AppointmentStatus- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<AppointmentStatusEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-