public class PRL extends CompositeDataType
This data type identifies the parent result's OBX segment related to the current order, together with the information in OBR-29-parent.
Represents an HL7 PRL data type. This data type has the following attributes:
1. Parent Observation Identifier (CWE)Required
2. Parent Observation Sub-identifier (OG)Optional
3. Parent Observation Value Descriptor (TX)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 |
|---|
PRL()
Default Constructor for PRL
|
PRL(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for PRL class which takes two arguments and
sets the value in the respective member variable.
|
PRL(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for PRL class which takes five arguments and
sets the value in the respective member variable.
|
PRL(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for PRL class which takes six arguments and
sets the value in the respective member variable.
|
PRL(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for PRL class which takes four arguments and
sets the value in the respective member variable.
|
PRL(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for PRL 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 |
getParentObservationIdentifier()
Returns Parent Observation Identifier
|
OG |
getParentObservationSubidentifier()
Returns Parent Observation Sub-identifier
|
TX |
getParentObservationValueDescriptor()
Returns Parent Observation Value Descriptor
|
void |
setParentObservationIdentifier(CWE objParentObservationIdentifier)
Sets the ParentObservationIdentifier.
|
void |
setParentObservationSubidentifier(OG objOG)
Sets the ParentObservationSubidentifier.
|
void |
setParentObservationSubidentifier(java.lang.String strParentObservationSubidentifier)
Sets the ParentObservationSubidentifier.
|
void |
setParentObservationValueDescriptor(java.lang.String strParentObservationValueDescriptor)
Sets the ParentObservationValueDescriptor.
|
void |
setParentObservationValueDescriptor(TX objTX)
Sets the ParentObservationValueDescriptor.
|
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 PRL()
public PRL(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 PRL(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 PRL(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 PRL(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 PRL(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 setParentObservationIdentifier(CWE objParentObservationIdentifier)
objParentObservationIdentifier - Contains the unique identifier of the parent observation as
defined in the OBX-3 of the parent result.public void setParentObservationSubidentifier(java.lang.String strParentObservationSubidentifier)
strParentObservationSubidentifier - Contains the sub-ID of the parent result as defined
in the OBX-4 of the parent result.public void setParentObservationSubidentifier(OG objOG)
objOG - Contains the sub-ID of the parent result as defined
in the OBX-4 of the parent result.public void setParentObservationValueDescriptor(java.lang.String strParentObservationValueDescriptor)
strParentObservationValueDescriptor - Contains a descriptor of the parent observation
value as specified in the OBX-5 of the parent result.public void setParentObservationValueDescriptor(TX objTX)
objTX - Contains a descriptor of the parent observation
value as specified in the OBX-5 of the parent result.public CWE getParentObservationIdentifier()
public OG getParentObservationSubidentifier()
public TX getParentObservationValueDescriptor()
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.