public class PTA extends CompositeDataType
This data type specifies the policy type and amount covered by the insurance.
Represents an HL7 PTA data type. This data type has the following attributes:
1. Policy Type (CWE)Required
2. Amount Class (CWE)Optional
4. Money or Percentage (MOP)Required
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 |
|---|
PTA()
Default Constructor for PTA
|
PTA(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for PTA class which takes two arguments and
sets the value in the respective member variable.
|
PTA(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for PTA class which takes five arguments and
sets the value in the respective member variable.
|
PTA(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for PTA class which takes six arguments and
sets the value in the respective member variable.
|
PTA(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for PTA class which takes four arguments and
sets the value in the respective member variable.
|
PTA(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for PTA 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 |
getAmountClass()
Returns Amount Class
|
MOP |
getMoneyOrPercentage()
Returns Money or Percentage
|
CWE |
getPolicyType()
Returns Policy Type
|
void |
setAmountClass(CWE objCWE)
Sets the AmountClass.
|
void |
setAmountClass(java.lang.String strAmountClass)
Sets the AmountClass.
|
void |
setMoneyOrPercentage(MOP objMoneyOrPercentage)
Sets the MoneyOrPercentage.
|
void |
setPolicyType(CWE objCWE)
Sets the PolicyType.
|
void |
setPolicyType(java.lang.String strPolicyType)
Sets the PolicyType.
|
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 PTA()
public PTA(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 PTA(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 PTA(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 PTA(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 PTA(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 setPolicyType(java.lang.String strPolicyType)
strPolicyType - Specifies the policy type.public void setPolicyType(CWE objCWE)
objCWE - Specifies the policy type.public void setAmountClass(java.lang.String strAmountClass)
strAmountClass - Specifies the amount quantity class.public void setAmountClass(CWE objCWE)
objCWE - Specifies the amount quantity class.public void setMoneyOrPercentage(MOP objMoneyOrPercentage)
objMoneyOrPercentage - specifies an amount that may be either currency or a percentage.public CWE getPolicyType()
public CWE getAmountClass()
public MOP getMoneyOrPercentage()
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.