public class DR extends CompositeDataType
This data type specifies the date/time range. DR can be legally expressed when embedded within another data type. Its use is constrained to a segment field. DR can be embedded as a COMPONENT or SUBCOMPONENT. If DR expressed as a SUBCOMPONENT then TS DataType expressed as SUBSUBCOMPONENT.
Represents an HL7 DR data type. This data type has the following attributes:
1. Range Start Date/Time (DTM)Optional
2. Range End Date/Time (DTM)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 |
|---|
DR()
Default Constructor for DR
|
DR(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for DR class which takes two arguments and
sets the value in the respective member variable.
|
DR(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for DR class which takes five arguments and
sets the value in the respective member variable.
|
DR(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for DR class which takes six arguments and
sets the value in the respective member variable.
|
DR(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for DR class which takes four arguments and
sets the value in the respective member variable.
|
DR(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for DR 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.
|
DTM |
getRangeEndDateTime()
Returns Range End Date/Time
|
DTM |
getRangeStartDateTime()
Returns Range Start Date/Time
|
void |
setRangeEndDateTime(DTM objRangeEndDateTime)
Sets the RangeEndDateTime.
|
void |
setRangeStartDateTime(DTM objRangeStartDateTime)
Sets the Range Start DateTime.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, validate, write, writeToXMLpublic DR()
public DR(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 DR(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 DR(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 DR(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 DR(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 setRangeStartDateTime(DTM objRangeStartDateTime)
objRangeStartDateTime - Specifies the earliest date/time (time stamp) in the specified range.public void setRangeEndDateTime(DTM objRangeEndDateTime)
objRangeEndDateTime - Specifies the latest date/time in the specified range.public DTM getRangeStartDateTime()
public DTM getRangeEndDateTime()
public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.