|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.vmdb.hl7.HL7Object | +--org.vmdb.hl7.HL7SegmentContainer | +--org.vmdb.hl7.HL7Message | +--org.vmdb.hl7.ORUMessage
Description: HL7 Network Connectivity For VMDB.
Copyright: Copyright (c) 2002-2003.
Company: Veterinary Medical Database (VMDB).
Message class(es) form the main API for the library. In most cases, there will be simple methods for inserting and extracting values from the message structure as well as for parsing incoming messages or building outgoing messages in either delimited HL7 or the draft XML representation.
The Observation Unsolicited (ORU) message is the approved method for submitting data to the Veterinary Medical Database (VMDB). This class implements a subset of the ORU message that meets all requirements of VMDB and parses and builds standard-compliant ORU messages. Appropriate default values are provided for required fields not used by VMDB. Limitations added by VMDB are supported and taken advantage of in order to keep the API as simple as possible. For routine processing of VMDB submissions, the only methods needed should be those provided in the ORUMessage's public interface and the public methods inherited from HL7Message.
For more complex tasks or for anything I've missed, any standard-compliant ORU message should parse correctly and any of its contents be accessible using lower-level classes. Similarly, using lower-level classes it is possible to build any standard-compliant ORU message which can then be rendered as either delimited or XML version HL7.
The XML representation of HL7 2.x introduces the concepts of groups and lists that, while present in the construction rules of delimited HL7, are not explicitly named or labelled in the messages themselves. The internal representation in this class follows the XML version with explicitly constructed groups and lists which we've combined under the general term (borrowed from X12) of "loop." Going to the lower-level access methods often requires knowing the location of a segment in this loop structure. Perhaps the simplest way to learn this loop structure is to use the library to import a delimited HL7 message of the structure you are working with, and then print it out using the toXML() method. Because all the groups and lists are explicitly named in the XML, the structure hierarchy will be right there.
The internal representation is built up using recursive construction. The message contains segments and loops. Loops can contain segments and other loops. Segments contain fields defined by elements of specific HL7 types. These elements my be simple strings of various types (all represented by SimpleElement currently) or may be built up from components which are themselves elements and so on. Because any given message can contain a potentially infinite number of segments, the data structure is only instantiated as it is needed either from reading in segments during parsing or from setting values that reside in a segment or field not yet instantiated. This is actually implemented in the getSSS() methods on the basis that a program is only getting the segment to do something with it. Similarly, segments are intially instantiated with place holders for all fields up to the last required field. This ensures that all delimiters required for standards compliance are present when the structure is output as HL7. If a value is set for an optional field after the last required field, placeholders up to and including the new field are instantiated. Because XML uses tag labels rather than position to identify fields, these empty fields are not output in the toXML() method.
Note: We use Java Bean like convention of getXXX and setXXX but with a few deviations. First as previously mentioned, getSSS() where SSS is a segment or loop abbreviation has the side affect of constructing the segment or loop if it does not already exist. Also, the set methods frequently take multiple parameters especially when the actual value is a mildly complex element-type such as coded entry (CE). We have added common conventional name patterns. For example addSSS() for segments that repeat and addDiagnosis(), etc., to abstract the process of adding a segment (usually OBX) holding a single data entry such as a finding (addFinding) or diagnosis (addDiagnosis). listXXX() returns an Iterator object over a collection of segments of the type specified by XXX. findEEE( XXX ) methods perform a depth-first search of the object hierarchy looking for XXX.
TODO: Add string length validation to all methods taking String input and add to documentation.
Constructor Summary | |
ORUMessage()
Construct an empty ORU Message with type and version set. |
Method Summary | |
OBXSegment |
addDiagnosis(CEElement ceDiagnosis)
Add a Diagnosis as a predefined CE Element. |
OBXSegment |
addDiagnosis(CEElement ceDiagnosis,
boolean bRecheck)
Add a Diagnosis as a predefined CE Element. |
OBXSegment |
addDiagnosis(java.lang.String sDiagnosisCode,
java.lang.String sDiagnosisText,
java.lang.String sCodeSystem)
Add a Diagnosis as the individual components of the CE Element. |
OBXSegment |
addDiagnosis(java.lang.String sDiagnosisCode,
java.lang.String sDiagnosisText,
java.lang.String sCodeSystem,
boolean bRecheck)
Add a Diagnosis as the individual components of the CE Element. |
OBXSegment |
addDiagnosis(java.lang.String sDiagnosisCode,
java.lang.String sDiagnosisText,
java.lang.String sCodeSystem,
java.lang.String sAltDiagnosisCode,
java.lang.String sAltDiagnosisText,
java.lang.String sAltCodeSystem)
Add a Diagnosis as the individual components of the CE Element. |
OBXSegment |
addDiagnosis(java.lang.String sDiagnosisCode,
java.lang.String sDiagnosisText,
java.lang.String sCodeSystem,
java.lang.String sAltDiagnosisCode,
java.lang.String sAltDiagnosisText,
java.lang.String sAltCodeSystem,
boolean bRecheck)
Add a Diagnosis as the individual components of the CE Element. |
OBXSegment |
addFinding(CEElement ceFinding)
Add a Finding as a predefined CE Element. |
OBXSegment |
addFinding(java.lang.String sFindingCode,
java.lang.String sFindingText,
java.lang.String sCodeSystem)
Add a Finding as the individual components of a CE Element. |
OBXSegment |
addFinding(java.lang.String sFindingCode,
java.lang.String sFindingText,
java.lang.String sCodeSystem,
java.lang.String sAltFindingCode,
java.lang.String sAltFindingText,
java.lang.String sAltCodeSystem)
Add a Finding as the individual components of a CE Element. |
OBXSegment |
addOBX()
Add an OBX segment that should be located in this loop. |
OBXSegment |
addProcedure(CEElement ceProcedure)
Add a Procedure as a predefined CE Element. |
OBXSegment |
addProcedure(java.lang.String sProcedureCode,
java.lang.String sProcedureText,
java.lang.String sCodeSystem)
Add a Procedure as the individual components of a CE Element. |
OBXSegment |
addProcedure(java.lang.String sProcedureCode,
java.lang.String sProcedureText,
java.lang.String sCodeSystem,
java.lang.String sAltProcedureCode,
java.lang.String sAltProcedureText,
java.lang.String sAltCodeSystem)
Add a Procedure as the individual components of a CE Element. |
java.lang.String |
getAdmissionType()
Get the admission type code. |
java.lang.String |
getAdmitDateTime()
Get the admit date/time as a string. |
XCNElement |
getAttendingDoctor()
Get the attending doctorn ID as a full XCN Element. |
java.lang.String |
getAttendingDoctorAssigningAuthority()
Get the attending doctor ID assigning facility. |
java.lang.String |
getAttendingDoctorId()
Get the attending doctor ID number. |
CEElement |
getBreed()
Get the breed as a predefined CE Element. |
java.lang.String |
getBreedText()
Get the breed text. |
CEElement |
getChiefComplaint()
Get the Chief Complaint as a predefined CE Element. |
java.lang.String |
getChiefComplaintText()
Get the Chief Complaint text. |
java.lang.String |
getColor()
Get the animal's color as string. |
java.lang.String |
getDateOfBirth()
Get the date of birth. |
java.lang.String |
getDischargeDateTime()
Get the discharge date/time as a string. |
java.lang.String |
getDisposition()
Get Discharge Disposition string. |
java.lang.String |
getEarTagText()
Get the ear tag text. |
java.lang.String |
getEarTagType()
Get the ear tag type. |
java.lang.String |
getMedicalRecordNumber()
Get the Medical record number. |
java.lang.String |
getMessageControlId()
Get the message control id. |
java.lang.String |
getMicrochipNumber()
Get the microchip number. |
java.lang.String |
getMicrochipType()
Get the microchip type. |
OBRSegment |
getOBR()
Get the OBR segment that should be nested somewhere within this loop. |
java.lang.String |
getObservationDateTime()
Get the observation date/time as a string. |
ORCSegment |
getORC()
Get the ORC segment that should be nested somewhere within this loop. |
ORCSegment |
getORC(java.lang.String sOrderControl)
Get the ORC segment that should be nested somewhere within this loop. |
java.lang.String |
getOrderControl()
Get Order Contrl string. |
PATIENT_RESULTLoop |
getPATIENT_RESULT()
Get the The PATIENT_RESULT loop contained in this message. |
java.lang.String |
getPatientClass()
Get the patient class code. |
java.lang.String |
getPatientName()
Get the patient's name. |
java.lang.String |
getPatientZipcode()
Get the postal code. |
PIDSegment |
getPID()
Get the PID segment that should be nested within this message. |
PV1Segment |
getPV1()
Get the PV1 segment that should be nested somewhere within this loop. |
java.lang.String |
getSendingFacilityId()
Get the Sending facility VMDB Institution Id. |
java.lang.String |
getSendingFacilityName()
Get the Sending facility name. |
java.lang.String |
getSex()
Get the gender. |
CEElement |
getSpecies()
Get the species as a predefined CE Element. |
java.lang.String |
getSpeciesText()
Get the species text. |
java.lang.String |
getTattooText()
Get the tattoo text. |
java.lang.String |
getTattooType()
Get the tattoo type. |
CEElement |
getUniversalServiceId()
Get the coded universal service identifier as a preformed CE Element. |
java.lang.String |
getUniversalServiceIdText()
Get the universal service identifier text. |
CXElement |
getVisitNumber()
Get the Visit Number ID as full CX Element. |
java.lang.String |
getVisitNumberAssigningAuthority()
Get the Visit Number assigning facility. |
java.lang.String |
getVisitNumberId()
Get the Visit Number ID number. |
java.lang.String |
getWeight()
Get the animal's weight. |
boolean |
getWeightMeasured()
Was the weight we returned with getWeight a measured weight rather than an estimate. |
java.lang.String |
getWeightUnits()
Get the weight units. |
java.util.Iterator |
listDiagnoses()
Get the Diagnosis list as an iterator over OBXSegment objects. |
java.util.Iterator |
listFindings()
Get the Finding list as an iterator over OBXSegment objects. |
java.util.Iterator |
listModifiers(OBXSegment obxRoot)
Get the Modifier list as iterator over OBXSegment objects. |
java.util.Iterator |
listProcedures()
Get the Procedure list as an iterator over OBXSegment objects. |
java.util.Iterator |
listRechecks()
Get the Recheck list as an iterator over OBXSegment objects. |
OBXSegment |
modifyObservation(OBXSegment obxRoot,
CEElement ceIdentifier,
CEElement ceModifier)
Modify a coded OBXSegment using predefined Coded Entry for identifier and code. |
void |
setAdmissionType(java.lang.String sAdmissionType)
Set the admission type code (C, K, E, Z, P, or R). |
void |
setAdmitDateTime(java.lang.String sDateTime)
Set the admit date/time of the message to string formatted date/time. |
void |
setAttendingDoctor(java.lang.String sIdNumber,
java.lang.String sAssigningAuthority)
Set the attending doctor. |
void |
setAttendingDoctorAssigningAuthority(java.lang.String sIdNumber,
java.lang.String sAssigningAuthority)
Set the attending doctor. |
void |
setAttendingDoctorId(java.lang.String sIdNumber)
Set the attending doctor ID number using the default assigning facility of the facility sending the report. |
void |
setBreed(CEElement ceBreed)
Set the breed as a predefined CE Element. |
void |
setBreed(java.lang.String sBreedCode,
java.lang.String sBreedText,
java.lang.String sCodeSystem)
Set the breed as the individual components of a CE Element. |
void |
setBreed(java.lang.String sBreedCode,
java.lang.String sBreedText,
java.lang.String sCodeSystem,
java.lang.String sAltBreedCode,
java.lang.String sAltBreedText,
java.lang.String sAltCodeSystem)
Set the breed as the individual components of a CE Element. |
OBXSegment |
setChiefComplaint(CEElement ceChiefComplaint)
Set the Chief Complaint as a predefined CE Element. |
OBXSegment |
setChiefComplaint(java.lang.String sChiefComplaintCode,
java.lang.String sChiefComplaintText,
java.lang.String sCodeSystem)
Set the Chief Complaint as the individual components of a CE Element. |
OBXSegment |
setChiefComplaint(java.lang.String sChiefComplaintCode,
java.lang.String sChiefComplaintText,
java.lang.String sCodeSystem,
java.lang.String sAltChiefComplaintCode,
java.lang.String sAltChiefComplaintText,
java.lang.String sAltCodeSystem)
Set the Chief Complaint as the individual components of a CE Element. |
void |
setColor(java.lang.String sColor)
Set the animal's color as uncoded text. |
void |
setDateOfBirth(java.lang.String sBDate)
Set the date of birth as ISO format data string YYYYMMDD |
void |
setDateOfBirth(TSElement tsBDate)
Set the date of birth as ISO format data string YYYYMMDD |
void |
setDischargeDateTime(java.lang.String sDateTime)
Set the discharge date/time of the message to string formatted date/time. |
void |
setDisposition(java.lang.String sDisp)
Set the Discharge Disposition. |
void |
setEarTag(java.lang.String sEarTagText,
java.lang.String sEarTagType)
Set the ear tag text and type. |
void |
setMedicalRecordNumber(java.lang.String sMRN)
Set the Medical record number. |
void |
setMessageControlId(java.lang.String sMessageControlId)
Set the message control id. |
void |
setMicrochip(java.lang.String sChipNumber,
java.lang.String sChipType)
Set the microchip number and type. |
void |
setObservationDateTime(java.lang.String sDateTime)
Set the observation date/time of the message to string formatted date/time. |
void |
setOrderControl(java.lang.String sOrderControl)
Set the Order Control. |
void |
setPatientClass(java.lang.String sPatClass)
Set the patient class code (A, I, O, R). |
void |
setPatientName(java.lang.String sName)
Set the patient's name (normally "Confidential"). |
void |
setPatientZipcode(java.lang.String sZipcode)
Set the postal code of animal's residence. |
void |
setSendingFacility(java.lang.String sName,
java.lang.String sId)
Set the Sending facility VMDB Institution Id. |
void |
setSex(java.lang.String sSex)
Set the gender. |
void |
setSpecies(CEElement ceSpecies)
Set the species as a predefined CE Element. |
void |
setSpecies(java.lang.String sSpeciesCode,
java.lang.String sSpeciesText,
java.lang.String sCodeSystem)
Set the species as the individual components of a CE Element |
void |
setSpecies(java.lang.String sSpeciesCode,
java.lang.String sSpeciesText,
java.lang.String sCodeSystem,
java.lang.String sAltSpeciesCode,
java.lang.String sAltSpeciesText,
java.lang.String sAltCodeSystem)
Set the species as the individual components of a CE Element |
void |
setTattoo(java.lang.String sTattooText,
java.lang.String sTattooType)
Set the tattoo text and type. |
void |
setUniversalServiceId(CEElement ceServiceId)
Set the coded universal service identifier as a preformed CE Element. |
void |
setUniversalServiceId(java.lang.String sCode,
java.lang.String sText,
java.lang.String sCodeType)
Set the coded universal service identifier. |
void |
setVisitNumber(java.lang.String sVisitNumber)
Set the Visit Number. |
void |
setVisitNumberAssigningAuthority(java.lang.String sAssigningAuthority)
Set the Visit Number ID assigning facility. |
void |
setWeight(java.lang.String sWeight,
java.lang.String sWeightUnits)
Set the animal's weight and weight units. |
void |
setWeight(java.lang.String sWeight,
java.lang.String sWeightUnits,
boolean bMeasured)
Set the weight. |
void |
setWeightRange(SNElement snWeightRange,
CEElement ceWeightUnits)
Set the animal's weight range and weight units. |
void |
setWeightRange(java.lang.String sMin,
java.lang.String sMax,
CEElement ceWeightUnits)
Set the animal's weight range and weight units. |
Methods inherited from class org.vmdb.hl7.HL7Message |
getDTD, getMessageName, getMSH, getReceivingFacility, getReceivingFacilityId, getReceivingFacilityName, getSendingFacility, getStyleSheet, printRule, readHL7, setDTD, setMessageName, setMessageName, setReceivingFacility, setReceivingFacility, setSendingFacility, setStyleSheet, toXML, toXML |
Methods inherited from class org.vmdb.hl7.HL7SegmentContainer |
findSegment, listsSegments, setSeparators, toString |
Methods inherited from class org.vmdb.hl7.HL7Object |
getRule |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public ORUMessage()
Method Detail |
public PATIENT_RESULTLoop getPATIENT_RESULT()
public PIDSegment getPID()
public PV1Segment getPV1()
public OBRSegment getOBR()
public ORCSegment getORC()
public ORCSegment getORC(java.lang.String sOrderControl)
public OBXSegment addOBX()
public void setMessageControlId(java.lang.String sMessageControlId)
setMessageControlId
in class HL7Message
public java.lang.String getMessageControlId()
getMessageControlId
in class HL7Message
public void setSendingFacility(java.lang.String sName, java.lang.String sId)
setSendingFacility
in class HL7Message
sName
- String with VMDB facility namesId
- String with VMDB facility idpublic java.lang.String getSendingFacilityId()
getSendingFacilityId
in class HL7Message
public java.lang.String getSendingFacilityName()
getSendingFacilityName
in class HL7Message
public void setMedicalRecordNumber(java.lang.String sMRN)
sMRN
- String with facility's MRNpublic java.lang.String getMedicalRecordNumber()
public void setSpecies(CEElement ceSpecies)
ceSpecies
- CEElement populated with the coded speciespublic void setSpecies(java.lang.String sSpeciesCode, java.lang.String sSpeciesText, java.lang.String sCodeSystem)
sSpeciesCode
- String with the code for speciessSpeciesText
- String with the species spelled outsCodeSystem
- String, usually "SCT," with the type of codepublic void setSpecies(java.lang.String sSpeciesCode, java.lang.String sSpeciesText, java.lang.String sCodeSystem, java.lang.String sAltSpeciesCode, java.lang.String sAltSpeciesText, java.lang.String sAltCodeSystem)
sSpeciesCode
- String with the code for speciessSpeciesText
- String with the species spelled outsCodeSystem
- String, usually "SCT," with the type of codesAltSpeciesCode
- String with the alternate code for the SAME speciessAltSpeciesText
- String with the species spelled out as in alternate systemsAltCodeSystem
- String, alternate the type of codepublic CEElement getSpecies()
public java.lang.String getSpeciesText()
public void setBreed(CEElement ceBreed)
ceBreed
- CEElement populated with breedpublic void setBreed(java.lang.String sBreedCode, java.lang.String sBreedText, java.lang.String sCodeSystem)
sBreedCode
- String snomed code for breedsBreedText
- String breed spelled outsCodeSystem
- String usually SCT with type of codepublic void setBreed(java.lang.String sBreedCode, java.lang.String sBreedText, java.lang.String sCodeSystem, java.lang.String sAltBreedCode, java.lang.String sAltBreedText, java.lang.String sAltCodeSystem)
sBreedCode
- String snomed code for breedsBreedText
- String breed spelled outsCodeSystem
- String usually SCT with type of codesAltBreedCode
- String Alternate code for breedsAltBreedText
- String breed spelled out as in alternate systemsAltCodeSystem
- String alternate type of codepublic CEElement getBreed()
public java.lang.String getBreedText()
public void setDateOfBirth(java.lang.String sBDate)
public void setDateOfBirth(TSElement tsBDate)
public java.lang.String getDateOfBirth()
public void setSex(java.lang.String sSex)
sSex
- String with gender as M, C, T, F, S, O, U, H, or Xpublic java.lang.String getSex()
public void setWeight(java.lang.String sWeight, java.lang.String sWeightUnits, boolean bMeasured)
sWeight
- String with weight in numeric formsWeightUnits
- String with units in ISO or ANSI abbreviation
(usually kg or lb)bMeasured
- true if weight was measured rather than estimated
reflected internally by loinc code 3141-9 measured vs. 8335-2 est
default is truepublic void setWeight(java.lang.String sWeight, java.lang.String sWeightUnits)
sWeight
- String with weight in numeric formsWeightUnits
- String with units in ISO or ANSI abbreviation
(usually kg or lb)public void setWeightRange(SNElement snWeightRange, CEElement ceWeightUnits)
snWeightRange
- SNElement with coded weight rangepublic void setWeightRange(java.lang.String sMin, java.lang.String sMax, CEElement ceWeightUnits)
sMin
- std::string with low end of weight range in numeric formsMax
- std::string with high end of weight range in numeric formpublic java.lang.String getWeight()
public java.lang.String getWeightUnits()
public boolean getWeightMeasured()
public void setColor(java.lang.String sColor)
sColor
- String colorpublic java.lang.String getColor()
public void setMicrochip(java.lang.String sChipNumber, java.lang.String sChipType)
sChipNumber
- String with chip numbersChipType
- String with chip type coded or text?public java.lang.String getMicrochipNumber()
getWeightUnits
method.
public java.lang.String getMicrochipType()
getWeightUnits
method.
public void setTattoo(java.lang.String sTattooText, java.lang.String sTattooType)
sTattooText
- String with text of tattoosTattooType
- String with type of tattoo (location, program, etc.) The
value supplied must be one of the constants defined in Identifiers. Eventually
these constants will be replaced with a more robust system for controlled
vocabulary lookup. For now, programmers may add constants to Identifiers,
Loinc, etc., without being required to submit the change under the LGPL.public java.lang.String getTattooText()
getWeightUnits
method.
public java.lang.String getTattooType()
getWeightUnits
method.
public void setEarTag(java.lang.String sEarTagText, java.lang.String sEarTagType)
sEarTagText
- String with text of ear tagsEarTagType
- String with type of ear tag (location, program, etc.)public java.lang.String getEarTagText()
getWeightUnits
method.
public java.lang.String getEarTagType()
getWeightUnits
method.
public void setPatientZipcode(java.lang.String sZipcode)
public java.lang.String getPatientZipcode()
public void setPatientName(java.lang.String sName)
sName
- String with namepublic java.lang.String getPatientName()
public void setPatientClass(java.lang.String sPatClass)
public java.lang.String getPatientClass()
public void setAdmissionType(java.lang.String sAdmissionType)
public java.lang.String getAdmissionType()
public void setAttendingDoctor(java.lang.String sIdNumber, java.lang.String sAssigningAuthority)
sIdNumber
- String Attending Doctor IDsAssigningAuthority
- String with identifier of assigning facilitypublic void setAttendingDoctorId(java.lang.String sIdNumber)
sIdNumber
- Attending Doctor identifier assigned by sending facilitypublic void setAttendingDoctorAssigningAuthority(java.lang.String sIdNumber, java.lang.String sAssigningAuthority)
sAssigningAuthority
- String with identifier of assigning facilitypublic XCNElement getAttendingDoctor()
public java.lang.String getAttendingDoctorId()
public java.lang.String getAttendingDoctorAssigningAuthority()
public void setVisitNumber(java.lang.String sVisitNumber)
sVisitNumber
- String with facility-assigned visit identifierpublic void setVisitNumberAssigningAuthority(java.lang.String sAssigningAuthority)
sAssigningAuthority
- String with namespace identifier for assigning facilitypublic CXElement getVisitNumber()
public java.lang.String getVisitNumberId()
public java.lang.String getVisitNumberAssigningAuthority()
public void setDisposition(java.lang.String sDisp)
sDisp
- one character string [0,1,2, or 3] for alive,
dead, euthanized, or referredpublic java.lang.String getDisposition()
public void setAdmitDateTime(java.lang.String sDateTime)
sDateTime
- String with date/time in yyyyMMddHHmmss formatpublic java.lang.String getAdmitDateTime()
public void setDischargeDateTime(java.lang.String sDateTime)
sDateTime
- String with date/time in yyyyMMddHHmmss formatpublic java.lang.String getDischargeDateTime()
public void setOrderControl(java.lang.String sOrderControl)
public java.lang.String getOrderControl()
public void setUniversalServiceId(java.lang.String sCode, java.lang.String sText, java.lang.String sCodeType)
sCode
- code value normally snomedsText
- spelled out termpublic void setUniversalServiceId(CEElement ceServiceId)
setUniversalServiceId( Loinc.CHART_ABSTRACT );
ceServiceId
- CEElement preformed usually constant from LOINC or SNOMEDpublic CEElement getUniversalServiceId()
public java.lang.String getUniversalServiceIdText()
public void setObservationDateTime(java.lang.String sDateTime)
sDateTime
- String with date/time in yyyyMMddHHmmss formatpublic java.lang.String getObservationDateTime()
public OBXSegment modifyObservation(OBXSegment obxRoot, CEElement ceIdentifier, CEElement ceModifier)
obxRoot
- The OBXSegment to which modifier is applied. Used to
obtain SubId value for this segment.ceIdentifier
- CEElement using predefined snomed code for type of
modification such as "with associated etiology" or "with laterality."ceModifier
- CEElement populated with modifier term.public java.util.Iterator listModifiers(OBXSegment obxRoot)
OBXSegment
objects.
obxRoot
- The OBXSegment to which modifiers are applied. Used to
obtain subId value for this segment. This does not need to be a root-level
diagnosis, finding, etc.. It can be itself a modifier. It simply indicates the
observation being modified by the modifiers returned. Similarly, modifiers of
these modifiers are not returned. To retrieve them, call listModifiers again
passign each of the OBXs in the iterator in turn. To retrieve all modifiers
that affect this observation directly or indirectly, you would perform a
depth-first recursive tree walk, but that--as they say--is an excercise left
to the student.
OBXSegment
objects that modify the root OBX.public OBXSegment setChiefComplaint(CEElement ceChiefComplaint)
ceChiefComplaint
- CEElement populated with Chief Complaint
public OBXSegment setChiefComplaint(java.lang.String sChiefComplaintCode, java.lang.String sChiefComplaintText, java.lang.String sCodeSystem)
sChiefComplaintCode
- String snomed code for Chief ComplaintsChiefComplaintText
- String Chief Complaint spelled outsCodeSystem
- String, usually SCT, with type of code
public OBXSegment setChiefComplaint(java.lang.String sChiefComplaintCode, java.lang.String sChiefComplaintText, java.lang.String sCodeSystem, java.lang.String sAltChiefComplaintCode, java.lang.String sAltChiefComplaintText, java.lang.String sAltCodeSystem)
sChiefComplaintCode
- String snomed code for Chief ComplaintsChiefComplaintText
- String Chief Complaint spelled outsCodeSystem
- String, usually SCT, with type of codesAltChiefComplaintCode
- String alternate code for the SAME Chief ComplaintsAltChiefComplaintText
- String Chief Complaint spelled out as in alternate systemsAltCodeSystem
- String, alternate type of code
public CEElement getChiefComplaint()
public java.lang.String getChiefComplaintText()
public OBXSegment addDiagnosis(CEElement ceDiagnosis)
ceDiagnosis
- CEElement populated with the coded Diagnosis
public OBXSegment addDiagnosis(CEElement ceDiagnosis, boolean bRecheck)
ceDiagnosis
- CEElement populated with the coded DiagnosisbRecheck
- true if this diagnosis is a recheck (default false)
public OBXSegment addDiagnosis(java.lang.String sDiagnosisCode, java.lang.String sDiagnosisText, java.lang.String sCodeSystem)
sDiagnosisCode
- String snomed code for the DiagnosissDiagnosisText
- String with the Diagnosis spelled outsCodeSystem
- String, usually "SCT," with the type of code used
public OBXSegment addDiagnosis(java.lang.String sDiagnosisCode, java.lang.String sDiagnosisText, java.lang.String sCodeSystem, java.lang.String sAltDiagnosisCode, java.lang.String sAltDiagnosisText, java.lang.String sAltCodeSystem)
sDiagnosisCode
- String snomed code for the DiagnosissDiagnosisText
- String with the Diagnosis spelled outsCodeSystem
- String, usually "SCT," with the type of code usedsAltDiagnosisCode
- String alternate code for the DiagnosissAltDiagnosisText
- String with the Diagnosis spelled out as in alternate systemsAltCodeSystem
- String, alternate type of code used
public OBXSegment addDiagnosis(java.lang.String sDiagnosisCode, java.lang.String sDiagnosisText, java.lang.String sCodeSystem, boolean bRecheck)
sDiagnosisCode
- String snomed code for the DiagnosissDiagnosisText
- String with the Diagnosis spelled outsCodeSystem
- String, usually "SCT," with the type of code usedbRecheck
- true if this diagnosis is a recheck (default false)
public OBXSegment addDiagnosis(java.lang.String sDiagnosisCode, java.lang.String sDiagnosisText, java.lang.String sCodeSystem, java.lang.String sAltDiagnosisCode, java.lang.String sAltDiagnosisText, java.lang.String sAltCodeSystem, boolean bRecheck)
sDiagnosisCode
- String snomed code for the DiagnosissDiagnosisText
- String with the Diagnosis spelled outsCodeSystem
- String, usually "SCT," with the type of code usedsAltDiagnosisCode
- String alternate code for the DiagnosissAltDiagnosisText
- String with the Diagnosis spelled out as in alternate systemsAltCodeSystem
- String, Alternate coding systembRecheck
- true if this diagnosis is a recheck (default false)
public java.util.Iterator listDiagnoses()
OBXSegment
objects.
OBXSegment
objects from Diagnosis OBXspublic java.util.Iterator listRechecks()
OBXSegment
objects.
OBXSegment
objects from Recheck OBXspublic OBXSegment addProcedure(CEElement ceProcedure)
ceProcedure
- CEElement populated with the coded Procedure
public OBXSegment addProcedure(java.lang.String sProcedureCode, java.lang.String sProcedureText, java.lang.String sCodeSystem)
sProcedureCode
- String with the code for ProceduresProcedureText
- String with the Procedure spelled outsCodeSystem
- String, usually "SCT," with the type of code
public OBXSegment addProcedure(java.lang.String sProcedureCode, java.lang.String sProcedureText, java.lang.String sCodeSystem, java.lang.String sAltProcedureCode, java.lang.String sAltProcedureText, java.lang.String sAltCodeSystem)
sProcedureCode
- String with the code for ProceduresProcedureText
- String with the Procedure spelled outsCodeSystem
- String, usually "SCT," with the type of codesAltProcedureCode
- String alternate code for the SAME ProceduresAltProcedureText
- String with the Procedure spelled out as in the alternate systemsAltCodeSystem
- String, alternate type of code
public java.util.Iterator listProcedures()
OBXSegment
objects.
OBXSegment
objects from Procedure OBXspublic OBXSegment addFinding(CEElement ceFinding)
ceFinding
- CEElement populated with the coded Finding
public OBXSegment addFinding(java.lang.String sFindingCode, java.lang.String sFindingText, java.lang.String sCodeSystem)
sFindingCode
- String with the code for FindingsFindingText
- String with the Finding spelled outsCodeSystem
- String, usually "SCT," with the type of code used
public OBXSegment addFinding(java.lang.String sFindingCode, java.lang.String sFindingText, java.lang.String sCodeSystem, java.lang.String sAltFindingCode, java.lang.String sAltFindingText, java.lang.String sAltCodeSystem)
sFindingCode
- String with the code for FindingsFindingText
- String with the Finding spelled outsCodeSystem
- String, usually "SCT," with the type of code usedsAltFindingCode
- String alternate code for the SAME FindingsAltFindingText
- String with the Finding spelled outsAltCodeSystem
- String, aternate type of code used
public java.util.Iterator listFindings()
OBXSegment
objects.
OBXSegment
objects from Finding OBXs
|
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |