public class QSC extends CompositeDataType
This data type indicates the conditions that qualify the rows to be returned in the query response.
Represents an HL7 QSC data type. This data type has the following attributes:
1. Segment Field Name (ST)Required
2. Relational Operator (ID)Optional
3. Value (ST)Optional
4. Relational Conjunction (ID)Optional
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 |
|---|
QSC()
Default Constructor for QSC
|
QSC(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for QSC class which takes two arguments and
sets the value in the respective member variable.
|
QSC(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for QSC class which takes five arguments and
sets the value in the respective member variable.
|
QSC(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for QSC class which takes six arguments and
sets the value in the respective member variable.
|
QSC(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for QSC class which takes four arguments and
sets the value in the respective member variable.
|
QSC(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for QSC 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.
|
ID |
getRelationalConjunction()
Returns Relational Conjunction
|
ID |
getRelationalOperator()
Returns Relational Operator
|
ST |
getSegmentFieldName()
Returns Segment Field Name
|
ST |
getvalue()
Returns Value
|
void |
setQSCValue(ST objST)
Sets the QSCValue.
|
void |
setQSCValue(java.lang.String strQSCValue)
Sets the QSCValue.
|
void |
setRelationalConjunction(ID objID)
Sets the RelationalConjunction.
|
void |
setRelationalConjunction(java.lang.String strRelationalConjunction)
Sets the RelationalConjunction.
|
void |
setRelationalOperator(ID objID)
Sets the RelationalOperator.
|
void |
setRelationalOperator(java.lang.String strRelationalOperator)
Sets the RelationalOperator.
|
void |
setSegmentFieldName(ST objST)
Sets the SegmentFieldName.
|
void |
setSegmentFieldName(java.lang.String strSegmentFieldName)
Sets the SegmentFieldName.
|
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 QSC()
public QSC(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 QSC(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 QSC(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 QSC(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 QSC(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 - The name of the field that is participating as a qualifierpublic void setSegmentFieldName(ST objST)
objST - The name of the field that is participating as a qualifierpublic void setRelationalOperator(java.lang.String strRelationalOperator)
strRelationalOperator - Refer to HL7 Table 0209 - Relational operator for valid values.public void setRelationalOperator(ID objID)
objString - Refer to HL7 Table 0209 - Relational operator for valid values.public void setQSCValue(java.lang.String strQSCValue)
strQSCValue - The value to which the field will be compared.public void setQSCValue(ST objST)
objST - The value to which the field will be compared.public void setRelationalConjunction(java.lang.String strRelationalConjunction)
strRelationalConjunction - a conjunction relates this repetition of the field to the next.public void setRelationalConjunction(ID objID)
objString - a conjunction relates this repetition of the field to the next.public ST getSegmentFieldName()
public ID getRelationalOperator()
public ST getvalue()
public ID getRelationalConjunction()
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.