public class Encounters
extends java.lang.Object
This class has the following attributes:
1. encounter (String)
2. location (List<String>)
3. date (EffectiveDateTime)
This class provides accessors and mutators for the elements mentioned above.
| Constructor and Description |
|---|
Encounters()
Constructs an object of Encounters.
|
| Modifier and Type | Method and Description |
|---|---|
EffectiveDateTime |
getDate()
Returns the date, time, and/or duration of an encounter.
|
java.lang.String |
getEncounter()
Returns the Encounter Activity.
|
java.util.List<java.lang.String> |
getLocation()
Returns the list of Encounter Locations.
|
void |
setDate(EffectiveDateTime date)
Sets the Encounter Date.
|
void |
setEncounter(java.lang.String encounter)
Sets the Encounter Activity.
|
public java.lang.String getEncounter()
public void setEncounter(java.lang.String encounter)
encounter - Specifies the Encounter Activity.public java.util.List<java.lang.String> getLocation()
public EffectiveDateTime getDate()
public void setDate(EffectiveDateTime date)
date - Specifies the date, time, and/or duration of an encounter.