public class ICD extends CompositeDataType
This data type specifies whether insurance certification is required for particular patient types, and the time window for obtaining the certification.
Represents an HL7 ICD data type. This data type has the following attributes:
1. Certification Patient Type (CWE)Optional
2. Certification Required (ID)Required
3. Date/Time Certification Required (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 |
|---|
ICD()
Default Constructor for ICD
|
ICD(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for ICD class which takes four arguments and
sets the value in the respective member variable.
|
ICD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for ICD class which takes five arguments and
sets the value in the respective member variable.
|
ICD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for ICD class which takes six arguments and
sets the value in the respective member variable.
|
ICD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for ICD class which takes four arguments and
sets the value in the respective member variable.
|
ICD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for ICD 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 |
getCertificationPatientType()
Returns Certification Patient Type
|
ID |
getCertificationRequired()
Returns Certification Required
|
DTM |
getDateTimeCertificationRequired()
Returns Date/Time Certification Required
|
void |
setCertificationPatientType(CWE objCWE)
Sets the CertificationPatientType.
|
void |
setCertificationPatientType(java.lang.String strCertificationPatientType)
Sets the CertificationPatientType.
|
void |
setCertificationRequired(ID objID)
Sets the CertificationRequired.
|
void |
setCertificationRequired(java.lang.String strCertificationRequired)
Sets the CertificationRequired.
|
void |
setDateTimeCertificationRequired(DTM objDateTimeCertificationRequired)
Sets the DateTimeCertificationRequired.
|
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 ICD()
public ICD(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 ICD(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 ICD(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 ICD(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 ICD(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 setCertificationPatientType(java.lang.String strCertificationPatientType)
strCertificationPatientType - Specifies Patient Typepublic void setCertificationPatientType(CWE objCWE)
objCWE - Specifies Patient Typepublic void setCertificationRequired(java.lang.String strCertificationRequired)
strCertificationRequired - Specifies certification is required or notpublic void setCertificationRequired(ID objID)
objID - Specifies certification is required or notpublic void setDateTimeCertificationRequired(DTM objDateTimeCertificationRequired)
objDateTimeCertificationRequired - Specifies Date/Time by which pre-certificationification must be obtainedpublic CWE getCertificationPatientType()
public ID getCertificationRequired()
public DTM getDateTimeCertificationRequired()
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.