Package ca.uhn.fhir.model.dstu2.valueset
Enum ReferralStatusEnum
- All Implemented Interfaces:
Serializable
,Comparable<ReferralStatusEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Accepted
Code Value: accepted The recipient has agreed to deliver the care requested by the referral.Display: Active
Code Value: active The referral has been acknowledged by the recipient, and is in the process of being actioned.Display: Cancelled
Code Value: cancelled The referral has been cancelled without being completed.Display: Completed
Code Value: completed The referral has been completely actioned.Display: Draft
Code Value: draft A draft referral that has yet to be send.Display: Rejected
Code Value: rejected The recipient has declined to accept the referral.Display: Requested
Code Value: requested The referral has been transmitted, but not yet acknowledged by the recipient. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<ReferralStatusEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: ReferralStatus -
Method Summary
Modifier and TypeMethodDescriptionstatic ReferralStatusEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic ReferralStatusEnum
Returns the enum constant of this type with the specified name.static ReferralStatusEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DRAFT
Display: Draft
Code Value: draft A draft referral that has yet to be send. -
REQUESTED
Display: Requested
Code Value: requested The referral has been transmitted, but not yet acknowledged by the recipient. -
ACTIVE
Display: Active
Code Value: active The referral has been acknowledged by the recipient, and is in the process of being actioned. -
CANCELLED
Display: Cancelled
Code Value: cancelled The referral has been cancelled without being completed. For example it is no longer needed. -
ACCEPTED
Display: Accepted
Code Value: accepted The recipient has agreed to deliver the care requested by the referral. -
REJECTED
Display: Rejected
Code Value: rejected The recipient has declined to accept the referral. -
COMPLETED
Display: Completed
Code Value: completed The referral has been completely actioned.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: ReferralStatus- 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
-