Package ca.uhn.fhir.model.dstu2.valueset
Enum MessageEventEnum
- java.lang.Object
-
- java.lang.Enum<MessageEventEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.MessageEventEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MessageEventEnum>
public enum MessageEventEnum extends Enum<MessageEventEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMIN_NOTIFYDisplay: admin-notify
Code Value: admin-notify Notification of a change to an administrative resource (either create or update).DIAGNOSTICREPORT_PROVIDEDisplay: diagnosticreport-provide
Code Value: diagnosticreport-provide Provide a diagnostic report, or update a previously provided diagnostic report.MEDICATIONADMINISTRATION_COMPLETEDisplay: MedicationAdministration-Complete
Code Value: MedicationAdministration-Complete Change the status of a Medication Administration to show that it is complete.MEDICATIONADMINISTRATION_NULLIFICATIONDisplay: MedicationAdministration-Nullification
Code Value: MedicationAdministration-Nullification Someone wishes to record that the record of administration of a medication is in error and should be ignored.MEDICATIONADMINISTRATION_RECORDINGDisplay: MedicationAdministration-Recording
Code Value: MedicationAdministration-Recording Indicates that a medication has been recorded against the patient's record.MEDICATIONADMINISTRATION_UPDATEDisplay: MedicationAdministration-Update
Code Value: MedicationAdministration-Update Update a Medication Administration record.OBSERVATION_PROVIDEDisplay: observation-provide
Code Value: observation-provide Provide a simple observation or update a previously provided simple observation.PATIENT_LINKDisplay: patient-link
Code Value: patient-link Notification that two patient records actually identify the same patient.PATIENT_UNLINKDisplay: patient-unlink
Code Value: patient-unlink Notification that previous advice that two patient records concern the same patient is now considered incorrect.VALUESET_EXPANDDisplay: valueset-expand
Code Value: valueset-expand The definition of a value set is used to create a simple collection of codes suitable for use for data entry or validation.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<MessageEventEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: MessageEvent
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageEventEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic MessageEventEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MessageEventEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEDICATIONADMINISTRATION_COMPLETE
public static final MessageEventEnum MEDICATIONADMINISTRATION_COMPLETE
Display: MedicationAdministration-Complete
Code Value: MedicationAdministration-Complete Change the status of a Medication Administration to show that it is complete.
-
MEDICATIONADMINISTRATION_NULLIFICATION
public static final MessageEventEnum MEDICATIONADMINISTRATION_NULLIFICATION
Display: MedicationAdministration-Nullification
Code Value: MedicationAdministration-Nullification Someone wishes to record that the record of administration of a medication is in error and should be ignored.
-
MEDICATIONADMINISTRATION_RECORDING
public static final MessageEventEnum MEDICATIONADMINISTRATION_RECORDING
Display: MedicationAdministration-Recording
Code Value: MedicationAdministration-Recording Indicates that a medication has been recorded against the patient's record.
-
MEDICATIONADMINISTRATION_UPDATE
public static final MessageEventEnum MEDICATIONADMINISTRATION_UPDATE
Display: MedicationAdministration-Update
Code Value: MedicationAdministration-Update Update a Medication Administration record.
-
ADMIN_NOTIFY
public static final MessageEventEnum ADMIN_NOTIFY
Display: admin-notify
Code Value: admin-notify 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.
-
DIAGNOSTICREPORT_PROVIDE
public static final MessageEventEnum DIAGNOSTICREPORT_PROVIDE
Display: diagnosticreport-provide
Code Value: diagnosticreport-provide Provide a diagnostic report, or update a previously provided diagnostic report.
-
OBSERVATION_PROVIDE
public static final MessageEventEnum OBSERVATION_PROVIDE
Display: observation-provide
Code Value: observation-provide Provide a simple observation or update a previously provided simple observation.
-
PATIENT_LINK
public static final MessageEventEnum PATIENT_LINK
Display: patient-link
Code Value: patient-link Notification that two patient records actually identify the same patient.
-
PATIENT_UNLINK
public static final MessageEventEnum PATIENT_UNLINK
Display: patient-unlink
Code Value: patient-unlink Notification that previous advice that two patient records concern the same patient is now considered incorrect.
-
VALUESET_EXPAND
public static final MessageEventEnum VALUESET_EXPAND
Display: valueset-expand
Code Value: valueset-expand 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.
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: MessageEvent- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<MessageEventEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static MessageEventEnum[] 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 (MessageEventEnum c : MessageEventEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageEventEnum 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
-
forCode
public static MessageEventEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-