Enum CommunicationTopic
- java.lang.Object
-
- java.lang.Enum<CommunicationTopic>
-
- org.hl7.fhir.r4.model.codesystems.CommunicationTopic
-
- All Implemented Interfaces:
Serializable,Comparable<CommunicationTopic>
public enum CommunicationTopic extends Enum<CommunicationTopic>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPOINTMENTREMINDERThe purpose or content of the communication is an appointment reminder.NULLadded to help the parsersPHONECONSULTThe purpose or content of the communication is a phone consult.PRESCRIPTIONREFILLREQUESTThe purpose or content of the communication is a prescription refill request.PROGRESSUPDATEThe purpose or content of the communication is a progress update.REPORTLABSThe purpose or content of the communication is to report labs.SUMMARYREPORTThe purpose or content of the communication is a summary report.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CommunicationTopicfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CommunicationTopicvalueOf(String name)Returns the enum constant of this type with the specified name.static CommunicationTopic[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRESCRIPTIONREFILLREQUEST
public static final CommunicationTopic PRESCRIPTIONREFILLREQUEST
The purpose or content of the communication is a prescription refill request.
-
PROGRESSUPDATE
public static final CommunicationTopic PROGRESSUPDATE
The purpose or content of the communication is a progress update.
-
REPORTLABS
public static final CommunicationTopic REPORTLABS
The purpose or content of the communication is to report labs.
-
APPOINTMENTREMINDER
public static final CommunicationTopic APPOINTMENTREMINDER
The purpose or content of the communication is an appointment reminder.
-
PHONECONSULT
public static final CommunicationTopic PHONECONSULT
The purpose or content of the communication is a phone consult.
-
SUMMARYREPORT
public static final CommunicationTopic SUMMARYREPORT
The purpose or content of the communication is a summary report.
-
NULL
public static final CommunicationTopic NULL
added to help the parsers
-
-
Method Detail
-
values
public static CommunicationTopic[] 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 (CommunicationTopic c : CommunicationTopic.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommunicationTopic 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 CommunicationTopic fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-