public class VR extends CompositeDataType
This data type contains the lower bound value and upper bound values that constitute a range. Either or both components may be populated.
Represents an HL7 VR data type. This data type has the following attributes:
1. First Data Code Value (ST)Optional
2. Last Data Code Value (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 |
|---|
VR()
Default Constructor for VR
|
VR(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for VR class which takes two arguments and
sets the value in the respective member variable.
|
VR(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for VR class which takes five arguments and
sets the value in the respective member variable.
|
VR(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for VR class which takes six arguments and
sets the value in the respective member variable.
|
VR(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for VR class which takes four arguments and
sets the value in the respective member variable.
|
VR(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for VR 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 |
getFirstDataCodeValue()
Returns First Data Code Value
|
ST |
getLastDataCodeValue()
Returns Last Data Code Value
|
void |
setFirstDataCodeValue(ST objST)
Sets the FirstDataCodeValue.
|
void |
setFirstDataCodeValue(java.lang.String strFirstDataCodeValue)
Sets the FirstDataCodeValue.
|
void |
setLastDataCodeValue(ST objST)
Sets the LastDataCodeValue.
|
void |
setLastDataCodeValue(java.lang.String strLastDataCodeValue)
Sets the LastDataCodeValue.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, validate, write, writeToXMLpublic VR()
public VR(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 VR(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 VR(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 VR(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 VR(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 setFirstDataCodeValue(java.lang.String strFirstDataCodeValue)
strFirstDataCodeValue - Specifies the lower bound value.public void setFirstDataCodeValue(ST objST)
objST - Specifies the lower bound value.public void setLastDataCodeValue(java.lang.String strLastDataCodeValue)
strLastDataCodeValue - Specifies the upper bound value.public void setLastDataCodeValue(ST objST)
objST - Specifies the upper bound value.public ST getFirstDataCodeValue()
public ST getLastDataCodeValue()
public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.