public class CCD extends CompositeDataType
This data type Specifies whether a charge action is based on an invocation event or is time-based.
Represents an HL7 CCD data type. This data type has the following attributes:
1. when to charge code (ID)Required
2. date/time (DTM)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 |
|---|
CCD()
Default Constructor for CCD
|
CCD(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for CCD class which takes two arguments and
sets the value in the respective member variable.
|
CCD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for CCD class which takes five arguments and
sets the value in the respective member variable.
|
CCD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for CCD class which takes six arguments and
sets the value in the respective member variable.
|
CCD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for CCD class which takes four arguments and
sets the value in the respective member variable.
|
CCD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for CCD 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.
|
DTM |
getDatetime()
Returns Date/time
|
ID |
getInvocationEvent()
Returns Invocation Event
|
void |
setDateTime(DTM objDTM)
Sets the Time.
|
void |
setDateTime(java.lang.String strDateTime)
Sets the Time.
|
void |
setInvocationEvent(ID objID)
Sets the Invocation Event.
|
void |
setInvocationEvent(java.lang.String strInvocationEvent)
Sets the Invocation Event.
|
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 CCD()
public CCD(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 CCD(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 CCD(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 CCD(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 CCD(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 setInvocationEvent(java.lang.String strInvocationEvent)
strInvocationEvent - Specifies the code for the event precipitating/triggering the charge activity.
[Refer to HL7 Table 0100 - Invocation event] valid values -D,O,R,S,T.public void setInvocationEvent(ID objID)
objID - Specifies the code for the event precipitating/triggering the charge activity.
[Refer to HL7 Table 0100 - Invocation event] valid values -D,O,R,S,T.public void setDateTime(java.lang.String strDateTime)
strTime - Specifies a point in time using a 24-hour clock notation.public void setDateTime(DTM objDTM) throws InvalidDataTypeException
objDTM - Specifies a point in time using a 24-hour clock notation.InvalidDataTypeExceptionpublic ID getInvocationEvent()
public DTM getDatetime()
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.