Uses of Class
org.dellroad.hl7.HL7Field
-
Packages that use HL7Field Package Description org.dellroad.hl7 This is the API documentation for the hl7lib Java library. -
-
Uses of HL7Field in org.dellroad.hl7
Fields in org.dellroad.hl7 declared as HL7Field Modifier and Type Field Description static HL7Field
HL7Field. EMPTY
The empty field.Fields in org.dellroad.hl7 with type parameters of type HL7Field Modifier and Type Field Description protected ArrayList<HL7Field>
HL7Segment. fields
Methods in org.dellroad.hl7 that return HL7Field Modifier and Type Method Description HL7Field
MSHSegment. getControlID()
Returns control ID from MSH.10.HL7Field
HL7Message. getField(String name)
Convenience method.HL7Field
HL7Message. getField(String name, int segnum)
Find a field by HL7 name.HL7Field
HL7Segment. getField(int index)
Get a field by "HL7 index".HL7Field[]
HL7Segment. getFields()
Get all of the fields, starting with the segment name.HL7Field
MSHSegment. getMessageType()
Returns message type from MSH.9.HL7Field
MSHSegment. getProcessingID()
Returns processing ID from MSH.11.HL7Field
MSHSegment. getReceivingApplication()
Returns receiving application from MSH.5.HL7Field
MSHSegment. getReceivingFacility()
Returns receiving facility from MSH.6.HL7Field
MSHSegment. getSendingApplication()
Returns sending application from MSH.3.HL7Field
MSHSegment. getSendingFacility()
Returns sending facility from MSH.4.HL7Field
MSHSegment. getTimestamp()
Returns message timestamp from MSH.7.HL7Field
MSHSegment. getVersionID()
Returns HL7 version from MSH.12.Methods in org.dellroad.hl7 with parameters of type HL7Field Modifier and Type Method Description void
HL7Segment. appendField(HL7Field field)
Add a field to the end of this segment.void
MSHSegment. setControlID(HL7Field field)
void
HL7Segment. setField(int index, HL7Field field)
Set a field in this segment.void
MSHSegment. setField(int index, HL7Field field)
This subclass version disallows setting MSH.1 or MSH.2 directly.void
MSHSegment. setMessageType(HL7Field field)
void
MSHSegment. setProcessingID(HL7Field field)
void
MSHSegment. setReceivingApplication(HL7Field field)
void
MSHSegment. setReceivingFacility(HL7Field field)
void
MSHSegment. setSendingApplication(HL7Field field)
void
MSHSegment. setSendingFacility(HL7Field field)
void
MSHSegment. setTimestamp(HL7Field field)
void
MSHSegment. setVersionID(HL7Field field)
Constructors in org.dellroad.hl7 with parameters of type HL7Field Constructor Description HL7Field(HL7Field field)
Copy constructor.HL7Segment(String name, HL7Field[] fields)
Constructor taking segment name and explicit fields.
-