public class SAD extends CompositeDataType
This data type specifies an entity's street address and associated detail.
Represents an HL7 SAD data type. This data type has the following attributes:
1. Street or Mailing Address (ST)Optional
2. Street Name (ST)Optional
3. Dwelling Number (ST)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 |
|---|
SAD()
Default Constructor for SAD
|
SAD(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for SAD class which takes two arguments and
sets the value in the respective member variable.
|
SAD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for SAD class which takes five arguments and
sets the value in the respective member variable.
|
SAD(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for SAD class which takes six arguments and
sets the value in the respective member variable.
|
SAD(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.
|
SAD(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for SAD 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.
|
ST |
getDwellingNumber()
Returns Dwelling Number
|
ST |
getStreetName()
Returns Street Name
|
ST |
getStreetOrMailingAddress()
Returns Street or Mailing Address
|
void |
setDwellingNumber(ST objST)
Sets the DwellingNumber.
|
void |
setDwellingNumber(java.lang.String strDwellingNumber)
Sets the DwellingNumber.
|
void |
setStreetName(ST objST)
Sets the StreetName.
|
void |
setStreetName(java.lang.String strStreetName)
Sets the StreetName.
|
void |
setStreetOrMailingAddress(ST objST)
Sets the StreetOrMailingAddress.
|
void |
setStreetOrMailingAddress(java.lang.String strStreetOrMailingAddress)
Sets the StreetOrMailingAddress.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, validate, write, writeToXMLpublic SAD()
public SAD(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 SAD(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 SAD(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 SAD(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 SAD(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 setStreetOrMailingAddress(java.lang.String strStreetOrMailingAddress)
strStreetOrMailingAddress - specifies the street or mailing address of a person or institution.public void setStreetOrMailingAddress(ST objST)
objString - specifies the street or mailing address of a person or institution.public void setStreetName(java.lang.String strStreetName)
strStreetName - specifies Street Name.public void setStreetName(ST objST)
objString - specifies Street Name.public void setDwellingNumber(java.lang.String strDwellingNumber)
strDwellingNumber - specifies Dwelling Numberpublic void setDwellingNumber(ST objST)
objST - specifies Dwelling Numberpublic ST getStreetOrMailingAddress()
public ST getStreetName()
public ST getDwellingNumber()
public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.