public class AUI extends CompositeDataType
This data type specifies the identifier or code for an insurance authorization instance and its associated detail.
Represents an HL7 AUI data type. This data type has the following attributes:
1. authorization number (ST)Optional
2. date (DT)Optional
3. source (ST)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 |
|---|
AUI()
Default Constructor for AUI
|
AUI(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for AUI class which takes two arguments and
sets the value in the respective member variable.
|
AUI(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for AUI class which takes five arguments and
sets the value in the respective member variable.
|
AUI(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for AUI class which takes six arguments and
sets the value in the respective member variable.
|
AUI(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for AUI class which takes four arguments and
sets the value in the respective member variable.
|
AUI(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for AUI 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.
|
ST |
getAuthorizationNumber()
Returns Authorization Number
|
DT |
getDate()
Returns Date
|
ST |
getSource()
Returns Source
|
void |
setAuthorizationNumber(ST objST)
Sets the Authorization Number.
|
void |
setAuthorizationNumber(java.lang.String strAuthorizationNumber)
Sets the Authorization Number.
|
void |
setDate(DT objDT)
Sets the Date.
|
void |
setDate(java.lang.String strDate)
Sets the Date.
|
void |
setSource(ST objST)
sets the Source.
|
void |
setSource(java.lang.String strSource)
sets the Source.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, validate, write, writeToXMLpublic AUI()
public AUI(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 AUI(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 AUI(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 AUI(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 AUI(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 setAuthorizationNumber(java.lang.String strAuthorizationNumber)
strAuthorizationNumber - Specifies Identifier assigned to the authorization.public void setAuthorizationNumber(ST objST)
objST - Specifies Identifier assigned to the authorization.public void setDate(java.lang.String strDate)
strDate - specifies Date of authorization.public void setDate(DT objDT)
objDT - specifies Date of authorization.public void setSource(java.lang.String strSource)
strSource - Specifies Source of authorization.public void setSource(ST objST)
objST - Specifies Source of authorization.public ST getAuthorizationNumber()
public DT getDate()
public ST getSource()
public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.