public class SRT extends CompositeDataType
This data type specifies those parameters by which the response will be sorted and by what method.
Represents an HL7 SRT data type. This data type has the following attributes:
1. Sort-by Field (ST)Required
2. Sequencing (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 |
|---|
SRT()
Default Constructor for SRT
|
SRT(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for SRT class which takes four arguments and
sets the value in the respective member variable.
|
SRT(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for SRT 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 |
getSequencing()
Returns Sequencing
|
ST |
getSortByField()
Returns Sort-by Field
|
void |
setSequencing(ID objID)
Sets the Sequencing
|
void |
setSequencing(java.lang.String strSequencing)
Sets the Sequencing
|
void |
setSortbyField(ST objST)
Sets the Sort by Field.
|
void |
setSortbyField(java.lang.String strSortbyField)
Sets the Sort by Field.
|
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 SRT()
public SRT(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 SRT(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 void setSortbyField(java.lang.String strSortbyField)
strSortbyField - Identifies the field by which the response will be sorted.public void setSortbyField(ST objST)
objST - Identifies the field by which the response will be sorted.public void setSequencing(java.lang.String strSequencing)
strSequencing - Identifies how the field or parameter will be sorted;
and, if sorted, whether the sort will be case sensitive (the default) or not.public void setSequencing(ID objID)
objID - Identifies how the field or parameter will be sorted;
and, if sorted, whether the sort will be case sensitive (the default) or not.public ST getSortByField()
public ID getSequencing()
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.