public class RCD extends CompositeDataType
This data type specifies the format of a column in terms of a segment field name, a data type, and a maximum length.
Represents an HL7 RCD data type. This data type has the following attributes:
1. Segment Field Name (ST)Optional
2. HL7 Data Type (ID)Optional
3. Maximum Column Width (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 |
|---|
RCD()
Default Constructor for RCD
|
RCD(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for RCD class which takes two arguments and
sets the value in the respective member variable.
|
RCD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for RCD class which takes five arguments and
sets the value in the respective member variable.
|
RCD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for RCD class which takes six arguments and
sets the value in the respective member variable.
|
RCD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for CQ class which takes four arguments and
sets the value in the respective member variable.
|
RCD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for RCD 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 |
getHL7DataType()
Returns HL7 Data Type
|
NM |
getMaximumColumnWidth()
Returns Maximum Column Width
|
ST |
getSegmentFieldName()
Returns Segment Field Name
|
void |
setHL7DataType(ID objID)
Sets the HL7DataType.
|
void |
setHL7DataType(java.lang.String strHL7DataType)
Sets the HL7DataType.
|
void |
setMaximumColumnWidth(NM objNM)
Sets the MaximumColumnWidth.
|
void |
setMaximumColumnWidth(java.lang.String strMaxColumnWidth)
Sets the MaximumColumnWidth.
|
void |
setSegmentFieldName(ST objST)
Sets the SegmentFieldName.
|
void |
setSegmentFieldName(java.lang.String strSegmentFieldName)
Sets the SegmentFieldName.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, validate, write, writeToXMLpublic RCD()
public RCD(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 RCD(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 RCD(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 RCD(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 RCD(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 setSegmentFieldName(java.lang.String strSegmentFieldName)
strSegmentFieldName - identifies the field occupying the column.public void setSegmentFieldName(ST objST)
objST - identifies the field occupying the column.public void setHL7DataType(java.lang.String strHL7DataType)
strHL7DataType - The two or three character HL7 data type.public void setHL7DataType(ID objID)
objID - The two or three character HL7 data type.public void setMaximumColumnWidth(java.lang.String strMaxColumnWidth)
strMaxColumnWidth - The maximum width of the column, as dictated by the responding system.public void setMaximumColumnWidth(NM objNM)
objNM - The maximum width of the column, as dictated by the responding system.public ST getSegmentFieldName()
public ID getHL7DataType()
public NM getMaximumColumnWidth()
public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.