Class MDM_T02

All Implemented Interfaces:
Group, Message, Structure, Visitable, Serializable

public class MDM_T02 extends AbstractMessage

Represents a MDM_T02 message structure (see chapter 9). This structure contains the following elements:

  • 1: MSH (Message Header)
  • 2: EVN (Event Type)
  • 3: PID (Patient identification)
  • 4: PV1 (Patient visit)
  • 5: TXA (Transcription Document Header)
  • 6: OBX (Observation/Result) repeating
See Also:
  • Constructor Details

    • MDM_T02

      public MDM_T02()
      Creates a new MDM_T02 message with DefaultModelClassFactory.
    • MDM_T02

      public MDM_T02(ModelClassFactory factory)
      Creates a new MDM_T02 message with custom ModelClassFactory.
  • Method Details

    • getVersion

      public String getVersion()
      Returns "2.4"
      Specified by:
      getVersion in interface Message
      Overrides:
      getVersion in class AbstractMessage
    • getMSH

      public MSH getMSH()

      Returns MSH (Message Header) - creates it if necessary

    • getEVN

      public EVN getEVN()

      Returns EVN (Event Type) - creates it if necessary

    • getPID

      public PID getPID()

      Returns PID (Patient identification) - creates it if necessary

    • getPV1

      public PV1 getPV1()

      Returns PV1 (Patient visit) - creates it if necessary

    • getTXA

      public TXA getTXA()

      Returns TXA (Transcription Document Header) - creates it if necessary

    • getOBX

      public OBX getOBX()

      Returns the first repetition of OBX (Observation/Result) - creates it if necessary

    • getOBX

      public OBX getOBX(int rep)

      Returns a specific repetition of OBX (Observation/Result) - creates it if necessary

      Parameters:
      rep - The repetition index (0-indexed, i.e. the first repetition is at index 0)
      Throws:
      HL7Exception - if the repetition requested is more than one greater than the number of existing repetitions.
    • getOBXReps

      public int getOBXReps()

      Returns the number of existing repetitions of OBX

    • getOBXAll

      public List<OBX> getOBXAll() throws HL7Exception

      Returns a non-modifiable List containing all current existing repetitions of OBX.

      Note that unlike getOBX(), this method will not create any reps if none are already present, so an empty list may be returned.

      Throws:
      HL7Exception
    • insertOBX

      public void insertOBX(OBX structure, int rep) throws HL7Exception

      Inserts a specific repetition of OBX (Observation/Result)

      Throws:
      HL7Exception
      See Also:
      • AbstractGroup#insertRepetition(Structure, int)
    • insertOBX

      public OBX insertOBX(int rep) throws HL7Exception

      Inserts a specific repetition of OBX (Observation/Result)

      Throws:
      HL7Exception
      See Also:
      • AbstractGroup#insertRepetition(Structure, int)
    • removeOBX

      public OBX removeOBX(int rep) throws HL7Exception

      Removes a specific repetition of OBX (Observation/Result)

      Throws:
      HL7Exception
      See Also: