public class PIP extends CompositeDataType
This data type specifies the institutional privileges with associated detail granted to a provider.
Represents an HL7 PIP data type. This data type has the following attributes:
1. Privilege (CWE)Required
2. Privilege Class (CWE)Optional
3. Expiration Date (DT)Optional
4. Activation Date (DT)Optional
5. Facility (EI)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 |
|---|
PIP()
Default Constructor for PIP
|
PIP(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for PIP class which takes two arguments and
sets the value in the respective member variable.
|
PIP(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for PIP class which takes fibe arguments and
sets the value in the respective member variable.
|
PIP(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for PIP class which takes six arguments and
sets the value in the respective member variable.
|
PIP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for PIP class which takes four arguments and
sets the value in the respective member variable.
|
PIP(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for PIP 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 |
getActivationDate()
Returns Activation Date
|
DT |
getExpirationDate()
Returns Expiration Date
|
EI |
getFacility()
Returns Facility
|
CWE |
getPrivilege()
Returns Privilege
|
CWE |
getPrivilegeClass()
Returns Privilege Class
|
void |
setActivationDate(DT objDT)
Sets the ActivationDate.
|
void |
setActivationDate(java.lang.String strActivationDate)
Sets the ActivationDate.
|
void |
setExpirationDate(DT objDT)
Sets the ExpirationDate.
|
void |
setExpirationDate(java.lang.String strExpirationDate)
Sets the ExpirationDate.
|
void |
setFacility(EI objFacility)
Sets the Facility.
|
void |
setPrivilege(CWE objPrivilege)
Sets the Privilege.
|
void |
setPrivilegeClass(CWE objPrivilegeClass)
Sets the PrivilegeClass.
|
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 PIP()
public PIP(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 PIP(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 PIP(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 PIP(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 PIP(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 setPrivilege(CWE objPrivilege)
objPrivilege - Specifies the institutional privilege itself.public void setPrivilegeClass(CWE objPrivilegeClass)
objPrivilegeClass - Specifies the class category of institutional privilege.public void setExpirationDate(java.lang.String strExpirationDate)
strExpirationDate - Specifies the date the institutional privilege is/was no longer valid.public void setExpirationDate(DT objDT)
objDT - Specifies the date the institutional privilege is/was no longer valid.public void setActivationDate(java.lang.String strActivationDate)
strActivationDate - Specifies the date the institutional privilege became/becomes valid.public void setActivationDate(DT objDT)
objDT - Specifies the date the institutional privilege became/becomes valid.public void setFacility(EI objFacility)
objFacility - Specifies the facility in which the institutional privilege is/was valid.public CWE getPrivilege()
public CWE getPrivilegeClass()
public DT getExpirationDate()
public DT getActivationDate()
public EI getFacility()
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.