public class MSG extends CompositeDataType
This field contains the message type, trigger event, and the message structure ID for the message.
Represents an HL7 MSG data type. This data type has the following attributes:
1. Message Code (ID)Required
2. Trigger Event (ID)Required
3. Message Structure (ID)Required
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 |
|---|
MSG()
Default Constructor for MSG
|
MSG(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for MSG class which takes two arguments and
sets the value in the respective member variable.
|
MSG(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for MSG class which takes five arguments and
sets the value in the respective member variable.
|
MSG(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for MSG class which takes six arguments and
sets the value in the respective member variable.
|
MSG(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for MSG class which takes four arguments and
sets the value in the respective member variable.
|
MSG(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for MSG 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 |
getMessageCode()
The method gives the object of Tye ID
|
ID |
getMessageStructure()
The method gives the object of Tye ID
|
ID |
getTriggerEvent()
The method gives the object of Tye ID
|
void |
setMessageCode(ID objID)
Sets the MessageCode.
|
void |
setMessageCode(java.lang.String strMessageCode)
Sets the MessageCode.
|
void |
setMessageStructure(ID objID)
Sets the MessageStructure.
|
void |
setMessageStructure(java.lang.String strMessageStructure)
Sets the MessageStructure.
|
void |
setTriggerEvent(ID objID)
Sets the TriggerEvent.
|
void |
setTriggerEvent(java.lang.String strTriggerEvent)
Sets the TriggerEvent.
|
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 MSG()
public MSG(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 MSG(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 MSG(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 MSG(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 MSG(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 setMessageCode(java.lang.String strMessageCode)
strMessageCode - Specifies the message type code.Suggested values such as ACK, ADT, ORM, ORU etc.public void setMessageCode(ID objID)
ID - Specifies the message type code.Suggested values such as ACK, ADT, ORM, ORU etc.public void setTriggerEvent(java.lang.String strTriggerEvent)
strTriggerEvent - Specifies the trigger event code.public void setTriggerEvent(ID objID)
objID - Specifies the trigger event code.public void setMessageStructure(java.lang.String strMessageStructure)
strMessageStructure - Specifies the abstract message structure code.public void setMessageStructure(ID objID)
objID - Specifies the abstract message structure code.public ID getMessageCode()
public ID getTriggerEvent()
public ID getMessageStructure()
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.