public class SPD extends CompositeDataType
This data type specifies the practitioner's specialty and related information.
Represents an HL7 SPD data type. This data type has the following attributes:
1. Specialty Name (ST)Required
2. Governing Board (ST)Optional
3. Eligible or Certified (ID)Optional
4. Date of Certification (DT)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 |
|---|
SPD()
Default Constructor for SPD
|
SPD(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for SPD class which takes two arguments and
sets the value in the respective member variable.
|
SPD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for SPD class which takes five arguments and
sets the value in the respective member variable.
|
SPD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for SPD class which takes six arguments and
sets the value in the respective member variable.
|
SPD(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.
|
SPD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for SPD 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.
|
DT |
getDateOfCertification()
Returns Date of Certification
|
ID |
getEligibleOrCertified()
Returns Eligible or Certified
|
ST |
getGoverningBoard()
Returns Governing Board
|
ST |
getSpecialtyName()
Returns Specialty Name
|
void |
setDateOfCertification(DT objDT)
Sets the DateOfCertification.
|
void |
setDateOfCertification(java.lang.String strDateOfCertification)
Sets the DateOfCertification.
|
void |
setEligibleOrCertified(ID objID)
Sets the EligibleOrCertified.
|
void |
setEligibleOrCertified(java.lang.String strEligibleOrCertified)
Sets the EligibleOrCertified.
|
void |
setGoverningBoard(ST objST)
Sets the GoverningBoard.
|
void |
setGoverningBoard(java.lang.String strGoverningBoard)
Sets the GoverningBoard.
|
void |
setSpecialtyName(ST objST)
Sets the SpecialtyName.
|
void |
setSpecialtyName(java.lang.String strSpecialtyName)
Sets the SpecialtyName.
|
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 SPD()
public SPD(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 SPD(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 SPD(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 SPD(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 SPD(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 setSpecialtyName(java.lang.String strSpecialtyName)
strSpecialtyName - Identifies the provider's specialty.public void setSpecialtyName(ST objST)
objST - Identifies the provider's specialty.public void setGoverningBoard(java.lang.String strGoverningBoard)
strGoverningBoard - Identifies the governing body providing for the specialty.public void setGoverningBoard(ST objST)
objST - Identifies the governing body providing for the specialty.public void setEligibleOrCertified(java.lang.String strEligibleOrCertified)
strEligibleOrCertified - Specifies the certification status.public void setEligibleOrCertified(ID objID)
objID - Specifies the certification status.public void setDateOfCertification(java.lang.String strDateOfCertification)
strDateOfCertification - Specifies when certification occurred.public void setDateOfCertification(DT objDT)
objDT - Specifies when certification occurred.public ST getSpecialtyName()
public ST getGoverningBoard()
public ID getEligibleOrCertified()
public DT getDateOfCertification()
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.