public class PatientDetails
extends java.lang.Object
This class has the following attributes:
1. MRN (String)
2. Name (String)
3. Family (String)
4. suffix (String)
5. prefix (String)
6. gender (String)
7. birthTime (String)
8. birthPlace (String)
9. maritalStatus (String)
10. religiousAffiliation (String)
11. raceCode (String)
12 ethnicGroup (String)
13. personalAddress (List<Address>)
14. participant (List<Participant>)
This class provides accessors and mutators for the elements mentioned above.
| Constructor and Description |
|---|
PatientDetails()
Constructs an object of Patient Details.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBirthPlace()
Returns the Birth Place of Patient.
|
java.lang.String |
getBirthTime()
Returns the Birth Time of Patient.
|
java.lang.String |
getEthnicGroup()
Returns the Ethnic Group.
|
java.lang.String |
getFamily()
Returns the Patient Family Name.
|
java.lang.String |
getGender()
Returns the Gender of Patient.
|
java.lang.String |
getMaritalStatus()
Returns the Marital Status of Patient.
|
java.lang.String |
getMrn()
Returns the MRN.
|
java.lang.String |
getName()
Returns the Patient Name.
|
java.util.List<Participant> |
getParticipant()
Returns the list of the Participant.(E.g.
|
java.util.List<Address> |
getPersonalAddress()
Returns list of the Personal Address of Patient.
|
java.lang.String |
getPrefix()
Returns the Patient Name Prefix.
|
java.lang.String |
getRaceCode()
Returns the Race Code.
|
java.lang.String |
getReligiousAffiliation()
Returns the Religious Affiliation.
|
java.lang.String |
getSuffix()
Returns the Patient Name Suffix.
|
void |
setBirthPlace(java.lang.String birthPlace)
Sets the Birth Place of Patient.
|
void |
setBirthTime(java.lang.String birthTime)
Sets the Birth Time of Patient.
|
void |
setEthnicGroup(java.lang.String ethnicGroup)
Sets the Ethnic Group.
|
void |
setFamily(java.lang.String family)
Sets the Patient Family Name.
|
void |
setGender(java.lang.String gender)
Sets the Gender of Patient.
|
void |
setMaritalStatus(java.lang.String maritalStatus)
Sets the Marital Status of Patient.
|
void |
setMrn(java.lang.String mrn)
Sets the MRN.
|
void |
setName(java.lang.String name)
Sets the Patient Name.
|
void |
setPrefix(java.lang.String prefix)
Sets the Patient Name Prefix.
|
void |
setRaceCode(java.lang.String raceCode)
Sets the Race Code.
|
void |
setReligiousAffiliation(java.lang.String religiousAffiliation)
Sets the Religious Affiliation.
|
void |
setSuffix(java.lang.String suffix)
Sets the Patient Name Suffix.
|
public java.lang.String getName()
public void setName(java.lang.String name)
name - Specifies the Patient Name.public java.lang.String getFamily()
public void setFamily(java.lang.String family)
family - Specifies the Patient Family Name.public java.lang.String getSuffix()
public void setSuffix(java.lang.String suffix)
suffix - Specifies the Patient Name Suffix.public java.lang.String getPrefix()
public void setPrefix(java.lang.String prefix)
prefix - Specifies the Patient Name Prefix.public java.lang.String getGender()
public void setGender(java.lang.String gender)
gender - Specifies the Gender of Patient.public java.lang.String getBirthTime()
public void setBirthTime(java.lang.String birthTime)
birthTime - Specifies the Birth Time of Patient.public java.util.List<Address> getPersonalAddress()
public java.util.List<Participant> getParticipant()
public java.lang.String getMaritalStatus()
public void setMaritalStatus(java.lang.String maritalStatus)
maritalStatus - Specifies the Marital Status of Patient.public java.lang.String getReligiousAffiliation()
public void setReligiousAffiliation(java.lang.String religiousAffiliation)
religiousAffiliation - Specifies the Religious Affiliation.public java.lang.String getRaceCode()
public void setRaceCode(java.lang.String raceCode)
raceCode - Specifies the Race Code.public java.lang.String getEthnicGroup()
public void setEthnicGroup(java.lang.String ethnicGroup)
ethnicGroup - specifies the Ethnic Group.public java.lang.String getMrn()
public void setMrn(java.lang.String mrn)
mrn - Specifies the MRN.public java.lang.String getBirthPlace()
public void setBirthPlace(java.lang.String birthPlace)
birthPlace - Specifies the Birth Place of Patient.