public class NA extends CompositeDataType
This data type type is used to represent a series (array) of numeric values. A field of this type may contain a one-dimensional array (vector or row) of numbers.
Represents an HL7 NA data type. This data type has the following attributes:
1. Value1 (NM)Optional
2. Value2 (NM)Optional
3. Value3 (NM)Optional
4. Value4 (NM)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 |
|---|
NA()
Default Constructor for NA
|
NA(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for NA class which takes two arguments and
sets the value in the respective member variable.
|
NA(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for NA class which takes five arguments and
sets the value in the respective member variable.
|
NA(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for NA class which takes six arguments and
sets the value in the respective member variable.
|
NA(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for NA class which takes four arguments and
sets the value in the respective member variable.
|
NA(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for NA 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.
|
NM |
getValue1()
Returns object of Value1.
|
NM |
getValue2()
Returns object of Value2.
|
NM |
getValue3()
Returns object of Value3.
|
NM |
getValue4()
Returns object of Value4.
|
void |
setValue1(NM objNM)
Sets the value of single element.
|
void |
setValue1(java.lang.String strValue1)
Sets the value of single element.
|
void |
setValue2(NM objNM)
Sets the value of single element.
|
void |
setValue2(java.lang.String strValue2)
Sets the value of single element.
|
void |
setValue3(NM objNM)
Sets the value of single element.
|
void |
setValue3(java.lang.String strValue3)
Sets the value of single element.
|
void |
setValue4(NM objNM)
Sets the value of single element.
|
void |
setValue4(java.lang.String strValue4)
Sets the value of single element.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, validate, write, writeToXMLpublic NA()
public NA(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 NA(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 NA(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 NA(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 NA(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 setValue1(java.lang.String strValue1)
strValue1 - value of single element.public void setValue1(NM objNM)
objNM - value of single element.public void setValue2(java.lang.String strValue2)
strValue2 - value of single element.public void setValue2(NM objNM)
objNM - value of single element.public void setValue3(java.lang.String strValue3)
strValue3 - value of single element.public void setValue3(NM objNM)
objNM - value of single element.public void setValue4(java.lang.String strValue4)
strValue4 - value of single element.public void setValue4(NM objNM)
objNM - value of single element.public NM getValue1()
public NM getValue2()
public NM getValue3()
public NM getValue4()
public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.