public class QIP extends CompositeDataType
This data type contains a segment field name and the list of values to be passed to the query processor.
Represents an HL7 QIP data type. This data type has the following attributes:
1. Segment Field Name (ST)Required
2. Values (ST)Required
This class provides accessors & mutators for the elements mentioned above. This class override the equal method, to check whether some other object is "equal to" this one.
User can also create Data Type through DataElementFactory
| Constructor and Description |
|---|
QIP()
Default Constructor for QIP
|
QIP(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for QIP class which takes two arguments and
sets the value in the respective member variable.
|
QIP(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for QIP class which takes five arguments and
sets the value in the respective member variable.
|
QIP(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for QIP class which takes six arguments and
sets the value in the respective member variable.
|
QIP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for QIP class which takes four arguments and
sets the value in the respective member variable.
|
QIP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for QIP class which takes five arguments and
sets the value in the respective member variable.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object objObject)
This method checks the equality of Object.
|
ST |
getSegmentFieldName()
Returns Segment Field Name
|
ST |
getValues()
Returns Values
|
void |
setSegmentFieldName(ST objST)
Sets the SegmentFieldName.
|
void |
setSegmentFieldName(java.lang.String strSegmentFieldName)
Sets the SegmentFieldName.
|
void |
setValues(ST objST)
Sets the Values.
|
void |
setValues(java.lang.String strValues)
Sets the Values.
|
boolean |
validate()
The Method validates the Input value,and if validated properly then returns true.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, write, writeToXMLpublic QIP()
public QIP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
throws InvalidComponentTypeException
iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.iComponentType - The Type of the component i.e Component or a subcomponent.InvalidComponentTypeException - - if Component Type is not specified or valid.public QIP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
throws InvalidComponentTypeException
iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.iTableNo - The Table number to which the value for the component is specified.iComponentType - The Type of the component i.e Component or a subcomponent.InvalidComponentTypeException - - if Component Type is not specified or valid.public QIP(int iComponentType, IDataTypeMap objIDataTypeMap)
objIDataTypeMap - object of Data Type Map.iComponentType - The Type of the component i.e Component or a subcomponent.InvalidComponentTypeException - - if Component Type is not specified or valid.public QIP(int iComponentType, int iMinLength, int iMaxLength, java.lang.String strCLength, IDataTypeMap objIDataTypeMap)
objIDataTypeMap - object of Data Type Map.iComponentType - The Type of the component i.e Component or a subcomponent.iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.InvalidComponentTypeException - - if Component Type is not specified or valid.public QIP(int iComponentType, int iMinLength, int iMaxLength, java.lang.String strCLength, int ITableNo, IDataTypeMap objIDataTypeMap)
objIDataTypeMap - object of Data Type Map.iComponentType - The Type of the component i.e Component or a subcomponent.iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.iTableNo - The Table number to which the value for the component is specified.InvalidComponentTypeException - - if Component Type is not specified or valid.public void setSegmentFieldName(java.lang.String strSegmentFieldName)
strSegmentFieldName - This component contains the segment field name.public void setSegmentFieldName(ST objST)
objST - This component contains the segment field name.public void setValues(java.lang.String strValues)
strValues - This component contains the field value or values in the form "value1& value2 & value3".public void setValues(ST objST)
objST - This component contains the field value or values in the form "value1& value2 & value3".public ST getSegmentFieldName()
public ST getValues()
public boolean validate()
throws InvalidDataTypeException
validate in interface IDataTypevalidate in class CompositeDataTypeInvalidDataTypeException - - if Invalid values is entered or Mandatory field is missing.public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.