Package ca.uhn.fhir.model.dstu2.valueset
Enum CommunicationStatusEnum
- All Implemented Interfaces:
Serializable
,Comparable<CommunicationStatusEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Completed
Code Value: completed The message transmission is complete, i.e., delivered to the recipient's destination.Display: Failed
Code Value: failed There was a failure in transmitting the message out.Display: In Progress
Code Value: in-progress The communication transmission is ongoing.Display: Rejected
Code Value: rejected The receiving system has declined to accept the message.Display: Suspended
Code Value: suspended The communication transmission has been held by originating system/user request. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<CommunicationStatusEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: CommunicationStatus -
Method Summary
Modifier and TypeMethodDescriptionstatic CommunicationStatusEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic CommunicationStatusEnum
Returns the enum constant of this type with the specified name.static CommunicationStatusEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IN_PROGRESS
Display: In Progress
Code Value: in-progress The communication transmission is ongoing. -
COMPLETED
Display: Completed
Code Value: completed The message transmission is complete, i.e., delivered to the recipient's destination. -
SUSPENDED
Display: Suspended
Code Value: suspended The communication transmission has been held by originating system/user request. -
REJECTED
Display: Rejected
Code Value: rejected The receiving system has declined to accept the message. -
FAILED
Display: Failed
Code Value: failed There was a failure in transmitting the message out.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: CommunicationStatus- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<CommunicationStatusEnum> 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
-