All Implemented Interfaces:
Composite, Type, Visitable, Serializable

public class QIP extends AbstractComposite

Represents an HL7 QIP (Query Input Parameter List) data type. This type consists of the following components:

  • Segment Field Name (ST)
  • Values (ST)
See Also:
  • Constructor Details

    • QIP

      public QIP(Message message)
      Creates a new QIP type
  • Method Details

    • getComponents

      public Type[] getComponents()
      Returns an array containing the data elements.
    • getComponent

      public Type getComponent(int number) throws DataTypeException
      Returns an individual data component.
      Parameters:
      number - The component number (0-indexed)
      Throws:
      DataTypeException - if the given element number is out of range.
    • getSegmentFieldName

      Returns Segment Field Name (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getQip1_SegmentFieldName

      Returns Segment Field Name (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getValues

      public ST getValues()
      Returns Values (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getQip2_Values

      public ST getQip2_Values()
      Returns Values (component 2). This is a convenience method that saves you from casting and handling an exception.