public class Medications
extends java.lang.Object
This class has the following attributes:
1. Medication (String)
2. Instructions (String)
3. Date (EffectiveDateTime)
4. Status (String)
5. Dose Quantity (String)
6. Period Value (String)
7. Period Unit (String)
8. Criterion (String)
This class provides accessors and mutators for the elements mentioned above.
| Constructor and Description |
|---|
Medications()
Constructs an object of Medications.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCriterion()
Returns the Criterion of Medication.
|
EffectiveDateTime |
getDate()
Returns the Date of Medication.
|
java.lang.String |
getDoseQuantity()
Returns the Dose Quantity.
|
java.lang.String |
getInstructions()
Returns the Instructions.
|
java.lang.String |
getMedication()
Returns the Medication Information.
|
java.lang.String |
getPeriodUnit()
Returns the Period Unit of Medication.
|
java.lang.String |
getPeriodValue()
Returns the Period Value of Medication.
|
java.lang.String |
getStatus()
Returns the Status of Medication.
|
void |
setCriterion(java.lang.String criterion)
Sets the Criterion of Medication.
|
void |
setDate(EffectiveDateTime Date)
Sets the duration of Medication.
|
void |
setDoseQuantity(java.lang.String doseQuantity)
Sets the Dose Quantity.
|
void |
setInstructions(java.lang.String instructions)
Sets the Instructions.
|
void |
setMedication(java.lang.String medication)
Sets the Medication Information.
|
void |
setPeriodUnit(java.lang.String periodUnit)
Sets the Period Unit of Medication.
|
void |
setPeriodValue(java.lang.String periodValue)
Sets the Period Value of Medication.
|
void |
setStatus(java.lang.String status)
Sets the Status of Medication.
|
public java.lang.String getMedication()
public void setMedication(java.lang.String medication)
medication - Specifies the Medication Information.public java.lang.String getInstructions()
public void setInstructions(java.lang.String instructions)
instructions - Specifies the Instructions.public EffectiveDateTime getDate()
public void setDate(EffectiveDateTime Date)
Date - Specifies the duration of Medication.public java.lang.String getStatus()
public void setStatus(java.lang.String status)
status - Specification the Status of Medication.public java.lang.String getDoseQuantity()
public void setDoseQuantity(java.lang.String doseQuantity)
doseQuantity - Specifies the Dose Quantity.public java.lang.String getPeriodValue()
public void setPeriodValue(java.lang.String periodValue)
periodValue - Specifies the Period Value of Medication.public java.lang.String getPeriodUnit()
public void setPeriodUnit(java.lang.String periodUnit)
periodUnit - Specifies the Period Unit of Medication.public java.lang.String getCriterion()
public void setCriterion(java.lang.String criterion)
criterion - Specifies the Criterion of Medication.