public class UVC extends CompositeDataType
This data type defines A code structure to relate amounts or values to identified data elements necessary to process this claim as qualified by the payer organization.
Represents an HL7 UVC data type. This data type has the following attributes:
1. Value Code (CWE)Required
2. Value Amount (MO)Optional
3. Non-Monetary Value Amount / Quantity (NM)Optional
4. Non-Monetary Value Amount / Units (CWE)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 |
|---|
UVC()
Default Constructor for UVC
|
UVC(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for UVC class which takes two arguments and
sets the value in the respective member variable.
|
UVC(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for UVC class which takes five arguments and
sets the value in the respective member variable.
|
UVC(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for UVC class which takes six arguments and
sets the value in the respective member variable.
|
UVC(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for UVC class which takes four arguments and
sets the value in the respective member variable.
|
UVC(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for UVC 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 |
getNonMonetaryValueAmounQuantity()
Returns Non-Monetary Value Amount / Quantity
|
CWE |
getNonMonetaryValueAmountUnits()
Returns Non-Monetary Value Amount / Units
|
MO |
getValueAmount()
Returns Value Amount
|
CWE |
getValueCode()
Returns Value Code
|
void |
setNonMonetaryValueAmountQuantity(NM objNM)
Sets the Non-Monetary Value Amount / Quantity.
|
void |
setNonMonetaryValueAmountQuantity(java.lang.String strNonMonetaryValueAmount)
Sets the Non-Monetary Value Amount / Quantity.
|
void |
setNonMonetaryValueAmountUnits(CWE objCWE)
Sets the Non-Monetary Value Amount / Units.
|
void |
setNonMonetaryValueAmountUnits(java.lang.String strNonMonetaryValueAmountUnits)
Sets the Non-Monetary Value Amount / Units.
|
void |
setValueAmount(MO objValueAmount)
Sets the ValueAmount.
|
void |
setValueCode(CWE objValueCode)
Sets the ValueCode.
|
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 UVC()
public UVC(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 UVC(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 UVC(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 UVC(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 UVC(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 setValueCode(CWE objValueCode)
objValueCode - Specifies the National Uniform Billing Committee (NUBC) code itself.public void setValueAmount(MO objValueAmount)
objValueAmount - Specifies the numeric amount when needed to pair with the value.public void setNonMonetaryValueAmountQuantity(java.lang.String strNonMonetaryValueAmount)
strNonMonetaryValueAmount - Specifies the Numeric Amount.public void setNonMonetaryValueAmountQuantity(NM objNM)
objNM - Specifies the Numeric Amount.public void setNonMonetaryValueAmountUnits(java.lang.String strNonMonetaryValueAmountUnits)
strNonMonetaryValueAmount - Specifies the Numeric Unit.public void setNonMonetaryValueAmountUnits(CWE objCWE)
objCWE - Specifies the Numeric Amount.public CWE getValueCode()
public MO getValueAmount()
public CWE getNonMonetaryValueAmounQuantity()
public CWE getNonMonetaryValueAmountUnits()
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.