
Package org.hl7.fhir.dstu3.model
Enum Enumerations.MessageEvent
- java.lang.Object
-
- java.lang.Enum<Enumerations.MessageEvent>
-
- org.hl7.fhir.dstu3.model.Enumerations.MessageEvent
-
- All Implemented Interfaces:
Serializable
,Comparable<Enumerations.MessageEvent>
- Enclosing class:
- Enumerations
public static enum Enumerations.MessageEvent extends Enum<Enumerations.MessageEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINNOTIFY
Notification of a change to an administrative resource (either create or update).CODESYSTEMEXPAND
The definition of a code system is used to create a simple collection of codes suitable for use for data entry or validation.COMMUNICATIONREQUEST
Notification to convey information.DIAGNOSTICREPORTPROVIDE
Provide a diagnostic report, or update a previously provided diagnostic report.MEDICATIONADMINISTRATIONCOMPLETE
Change the status of a Medication Administration to show that it is complete.MEDICATIONADMINISTRATIONNULLIFICATION
Someone wishes to record that the record of administration of a medication is in error and should be ignored.MEDICATIONADMINISTRATIONRECORDING
Indicates that a medication has been recorded against the patient's record.MEDICATIONADMINISTRATIONUPDATE
Update a Medication Administration record.NULL
added to help the parsersOBSERVATIONPROVIDE
Provide a simple observation or update a previously provided simple observation.PATIENTLINK
Notification that two patient records actually identify the same patient.PATIENTUNLINK
Notification that previous advice that two patient records concern the same patient is now considered incorrect.VALUESETEXPAND
The definition of a value set is used to create a simple collection of codes suitable for use for data entry or validation.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Enumerations.MessageEvent
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static Enumerations.MessageEvent
valueOf(String name)
Returns the enum constant of this type with the specified name.static Enumerations.MessageEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CODESYSTEMEXPAND
public static final Enumerations.MessageEvent CODESYSTEMEXPAND
The definition of a code system is used to create a simple collection of codes suitable for use for data entry or validation. An expanded code system will be returned, or an error message.
-
MEDICATIONADMINISTRATIONCOMPLETE
public static final Enumerations.MessageEvent MEDICATIONADMINISTRATIONCOMPLETE
Change the status of a Medication Administration to show that it is complete.
-
MEDICATIONADMINISTRATIONNULLIFICATION
public static final Enumerations.MessageEvent MEDICATIONADMINISTRATIONNULLIFICATION
Someone wishes to record that the record of administration of a medication is in error and should be ignored.
-
MEDICATIONADMINISTRATIONRECORDING
public static final Enumerations.MessageEvent MEDICATIONADMINISTRATIONRECORDING
Indicates that a medication has been recorded against the patient's record.
-
MEDICATIONADMINISTRATIONUPDATE
public static final Enumerations.MessageEvent MEDICATIONADMINISTRATIONUPDATE
Update a Medication Administration record.
-
ADMINNOTIFY
public static final Enumerations.MessageEvent ADMINNOTIFY
Notification of a change to an administrative resource (either create or update). Note that there is no delete, though some administrative resources have status or period elements for this use.
-
COMMUNICATIONREQUEST
public static final Enumerations.MessageEvent COMMUNICATIONREQUEST
Notification to convey information.
-
DIAGNOSTICREPORTPROVIDE
public static final Enumerations.MessageEvent DIAGNOSTICREPORTPROVIDE
Provide a diagnostic report, or update a previously provided diagnostic report.
-
OBSERVATIONPROVIDE
public static final Enumerations.MessageEvent OBSERVATIONPROVIDE
Provide a simple observation or update a previously provided simple observation.
-
PATIENTLINK
public static final Enumerations.MessageEvent PATIENTLINK
Notification that two patient records actually identify the same patient.
-
PATIENTUNLINK
public static final Enumerations.MessageEvent PATIENTUNLINK
Notification that previous advice that two patient records concern the same patient is now considered incorrect.
-
VALUESETEXPAND
public static final Enumerations.MessageEvent VALUESETEXPAND
The definition of a value set is used to create a simple collection of codes suitable for use for data entry or validation. An expanded value set will be returned, or an error message.
-
NULL
public static final Enumerations.MessageEvent NULL
added to help the parsers
-
-
Method Detail
-
values
public static Enumerations.MessageEvent[] 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 (Enumerations.MessageEvent c : Enumerations.MessageEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enumerations.MessageEvent 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 Enumerations.MessageEvent fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-