Package org.hl7.fhir.dstu2.model
Enum Enumerations.MessageEvent
- java.lang.Object
-
- java.lang.Enum<Enumerations.MessageEvent>
-
- org.hl7.fhir.dstu2.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 ADMINNOTIFYNotification of a change to an administrative resource (either create or update).DIAGNOSTICREPORTPROVIDEProvide a diagnostic report, or update a previously provided diagnostic report.MEDICATIONADMINISTRATIONCOMPLETEChange the status of a Medication Administration to show that it is complete.MEDICATIONADMINISTRATIONNULLIFICATIONSomeone wishes to record that the record of administration of a medication is in error and should be ignored.MEDICATIONADMINISTRATIONRECORDINGIndicates that a medication has been recorded against the patient's record.MEDICATIONADMINISTRATIONUPDATEUpdate a Medication Administration record.NULLadded to help the parsersOBSERVATIONPROVIDEProvide a simple observation or update a previously provided simple observation.PATIENTLINKNotification that two patient records actually identify the same patient.PATIENTUNLINKNotification that previous advice that two patient records concern the same patient is now considered incorrect.VALUESETEXPANDThe 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.MessageEventfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Enumerations.MessageEventvalueOf(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
-
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.
-
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()
-
-