Enum CommunicationNotDoneReason
- java.lang.Object
-
- java.lang.Enum<CommunicationNotDoneReason>
-
- org.hl7.fhir.r4.model.codesystems.CommunicationNotDoneReason
-
- All Implemented Interfaces:
Serializable,Comparable<CommunicationNotDoneReason>
public enum CommunicationNotDoneReason extends Enum<CommunicationNotDoneReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAMILYOBJECTIONThe communication was not done due to a family objection.INVALIDPHONENUMBERThe communication was not done due to an invalid phone number.NULLadded to help the parsersPATIENTOBJECTIONThe communication was not done due to a patient objection.RECIPIENTUNAVAILABLEThe communication was not done due to the recipient being unavailable.SYSTEMERRORThe communication was not done due to a system error.UNKNOWNThe communication was not done due to an unknown reason.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CommunicationNotDoneReasonfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CommunicationNotDoneReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static CommunicationNotDoneReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final CommunicationNotDoneReason UNKNOWN
The communication was not done due to an unknown reason.
-
SYSTEMERROR
public static final CommunicationNotDoneReason SYSTEMERROR
The communication was not done due to a system error.
-
INVALIDPHONENUMBER
public static final CommunicationNotDoneReason INVALIDPHONENUMBER
The communication was not done due to an invalid phone number.
-
RECIPIENTUNAVAILABLE
public static final CommunicationNotDoneReason RECIPIENTUNAVAILABLE
The communication was not done due to the recipient being unavailable.
-
FAMILYOBJECTION
public static final CommunicationNotDoneReason FAMILYOBJECTION
The communication was not done due to a family objection.
-
PATIENTOBJECTION
public static final CommunicationNotDoneReason PATIENTOBJECTION
The communication was not done due to a patient objection.
-
NULL
public static final CommunicationNotDoneReason NULL
added to help the parsers
-
-
Method Detail
-
values
public static CommunicationNotDoneReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CommunicationNotDoneReason c : CommunicationNotDoneReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommunicationNotDoneReason valueOf(String name)
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
-
fromCode
public static CommunicationNotDoneReason fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-