public class DLD extends CompositeDataType
This data type specifies the healthcare facility to which the patient was discharged and the date.
Represents an HL7 DLD data type. This data type has the following attributes:
1. Discharge to Location (CWE)Required
2. Effective Date (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 |
|---|
DLD()
Default Constructor for DLD
|
DLD(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for DLD class which takes two arguments and
sets the value in the respective member variable.
|
DLD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for DLD class which takes five arguments and
sets the value in the respective member variable.
|
DLD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for DLD class which takes six arguments and
sets the value in the respective member variable.
|
DLD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for DLD class which takes four arguments and
sets the value in the respective member variable.
|
DLD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for DLD 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.
|
CWE |
getDischargeLocation()
Returns Discharge Location
|
DTM |
getEffectiveDate()
Returns Effective Date
|
void |
setDischargeToLocation(CWE objCWE)
Sets the Discharge Location.
|
void |
setDischargeToLocation(java.lang.String strDischargeLocation)
Sets the Discharge Location.
|
void |
setEffectiveDate(DTM objEffectiveDate)
Sets the Effective Date.
|
void |
setEffectiveDate(java.lang.String strEffectiveDate)
Sets the Effective Date.
|
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 DLD()
public DLD(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 DLD(int iMinLength, int iMaxLength, java.lang.String strCLength, int iTableNo, int iComponentType)
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 DLD(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 DLD(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 DLD(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 setDischargeToLocation(java.lang.String strDischargeLocation)
strDischargeLocation - Specifies the healthcare facility to which the patient was discharged.public void setDischargeToLocation(CWE objCWE)
strCWE - Specifies the healthcare facility to which the patient was discharged.public void setEffectiveDate(java.lang.String strEffectiveDate)
strEffectiveDate - specifies the Date.public void setEffectiveDate(DTM objEffectiveDate)
objEffectiveDate - specifies the Effective Date.public CWE getDischargeLocation()
public DTM getEffectiveDate()
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.