public class MOP extends CompositeDataType
This data type specifies an amount that may be either currency or a percentage. It is a variation on the MO data type that is limited to currency.
Represents an HL7 MOP data type. This data type has the following attributes:
1. Money or Percentage Indicator (ID)Required
2. Money or Percentage Quantity (NM)Required
3. Currency Denomination (ID)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 |
|---|
MOP()
Default Constructor for MOP
|
MOP(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for MOP class which takes two arguments and
sets the value in the respective member variable.
|
MOP(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for MOP class which takes five arguments and
sets the value in the respective member variable.
|
MOP(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for MOP class which takes six arguments and
sets the value in the respective member variable.
|
MOP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for MOP class which takes four arguments and
sets the value in the respective member variable.
|
MOP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for MOP 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.
|
ID |
getCurrencyDenomination()
Returns Currency Denomination
|
ID |
getMoneyOrPercentageIndicator()
Returns Money or Percentage Indicator
|
NM |
getMoneyOrPercentageQuantity()
Returns Money or Percentage Quantity
|
void |
setCurrencyDenomination(ID objID)
Sets the CurrencyDenomination.
|
void |
setCurrencyDenomination(java.lang.String strCurrencyDenomination)
Sets the CurrencyDenomination.
|
void |
setMoneyOrPercentageIndicator(ID objID)
Sets the MoneyOrPercentageIndicator.
|
void |
setMoneyOrPercentageIndicator(java.lang.String strMoneyOrPercentageIndicator)
Sets the MoneyOrPercentageIndicator.
|
void |
setMoneyOrPercentageQuantity(NM objNM)
Sets the MoneyOrPercentageQuantity.
|
void |
setMoneyOrPercentageQuantity(java.lang.String strMoneyOrPercentageQuantity)
Sets the MoneyOrPercentageQuantity.
|
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 MOP()
public MOP(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 MOP(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 MOP(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 MOP(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 MOP(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 setMoneyOrPercentageIndicator(java.lang.String strMoneyOrPercentageIndicator)
strMoneyOrPercentageIndicator - Specifies whether the amount is currency or a percentage (AT/PC)public void setMoneyOrPercentageIndicator(ID objID)
objID - Specifies whether the amount is currency or a percentage (AT/PC)public void setMoneyOrPercentageQuantity(java.lang.String strMoneyOrPercentageQuantity)
strMoneyOrPercentageQuantity - Specifies the currency or percentage quantitypublic void setMoneyOrPercentageQuantity(NM objNM)
objNM - Specifies the currency or percentage quantitypublic void setCurrencyDenomination(java.lang.String strCurrencyDenomination)
strCurrencyDenomination - the denomination in which the quantity is expressedpublic void setCurrencyDenomination(ID objID)
objID - the denomination in which the quantity is expressedpublic ID getMoneyOrPercentageIndicator()
public NM getMoneyOrPercentageQuantity()
public ID getCurrencyDenomination()
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.