Package ca.uhn.fhir.model.dstu2.valueset
Enum EncounterStateEnum
- All Implemented Interfaces:
Serializable
,Comparable<EncounterStateEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Arrived
Code Value: arrived The Patient is present for the encounter, however is not currently meeting with a practitioner.Display: Cancelled
Code Value: cancelled The Encounter has ended before it has begun.Display: Finished
Code Value: finished The Encounter has ended.Display: in Progress
Code Value: in-progress The Encounter has begun and the patient is present / the practitioner and the patient are meeting.Display: On Leave
Code Value: onleave The Encounter has begun, but the patient is temporarily on leave.Display: Planned
Code Value: planned The Encounter has not yet started. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<EncounterStateEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: EncounterState -
Method Summary
Modifier and TypeMethodDescriptionstatic EncounterStateEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic EncounterStateEnum
Returns the enum constant of this type with the specified name.static EncounterStateEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PLANNED
Display: Planned
Code Value: planned The Encounter has not yet started. -
ARRIVED
Display: Arrived
Code Value: arrived The Patient is present for the encounter, however is not currently meeting with a practitioner. -
IN_PROGRESS
Display: in Progress
Code Value: in-progress The Encounter has begun and the patient is present / the practitioner and the patient are meeting. -
ON_LEAVE
Display: On Leave
Code Value: onleave The Encounter has begun, but the patient is temporarily on leave. -
FINISHED
Display: Finished
Code Value: finished The Encounter has ended. -
CANCELLED
Display: Cancelled
Code Value: cancelled The Encounter has ended before it has begun.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: EncounterState- See Also:
-
VALUESET_BINDER
Converts 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
-