public class HD extends CompositeDataType
This data type identifies an (administrative or system or application or other) entity that has responsibility for managing or assigning a defined set of instance identifiers (such as placer or filler number, patient identifiers, provider identifiers, etc.)
Represents an HL7 HD data type. This data type has the following attributes:
1. Namespace ID (IS)Optional
2. Universal ID (ST)Conditional
3. Universal ID Type (ID)Conditional
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 |
|---|
HD()
Default constructor for HD.
|
HD(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for HD class which takes four arguments and
sets the value in the respective member variable.
|
HD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for TS class which takes five arguments and
sets the value in the respective member variable.
|
HD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for HD class which takes six arguments and
sets the value in the respective member variable.
|
HD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for HD class which takes four arguments and
sets the value in the respective member variable.
|
HD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for HD 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.
|
IS |
getNamespaceID()
Returns Namespace ID
|
ST |
getUniversalID()
Returns Universal ID
|
ID |
getUniversalIDType()
Returns Universal ID Type
|
void |
setNamespaceId(IS objIS)
Sets the NamespaceId.
|
void |
setNamespaceId(java.lang.String strNamespaceId)
Sets the NamespaceId.
|
void |
setUniversalId(ST objST)
Sets the UniversalId.
|
void |
setUniversalId(java.lang.String strUniversalId)
Sets the UniversalId.
|
void |
setUniversalIdType(ID objID)
Sets the UniversalIdType.
|
void |
setUniversalIdType(java.lang.String strUniversalIdType)
Sets the UniversalIdType.
|
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 HD()
public HD(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 HD(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.iComponentType - The Type of the component i.e Component or a subcomponent.InvalidComponentTypeException - - if Component Type is not specified or valid.public HD(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 HD(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 HD(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 setNamespaceId(java.lang.String strNamespaceId)
strNamespaceId - Specifies Specifies the HL7 identifier for the user-defined table of values for this component.[Refer Table No.300]public void setNamespaceId(IS objIS)
objIS - Specifies Specifies the HL7 identifier for the user-defined table of values for this component.[Refer Table No.300]public void setUniversalId(java.lang.String strUniversalId)
strUniversalId - Specifies a string formatted according to the scheme defined by the component, public void setUniversalId(ST objST)
objST - Specifies a string formatted according to the scheme defined by the component, public void setUniversalIdType(java.lang.String strUniversalIdType)
strUniversalIdType - Governs the voiderpretation of the strUniversalId.public void setUniversalIdType(ID objID) throws InvalidDataTypeException
objID - Governs the voiderpretation of the strUniversalId.InvalidDataTypeExceptionpublic IS getNamespaceID()
public ST getUniversalID()
public ID getUniversalIDType()
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.