public class VitalSigns
extends java.lang.Object
This class has the following attributes:
1. date (String)
2. vitalSigns (String)
3. value (String)
4. unit (String)
This class provides accessors and mutators for the elements mentioned above.
| Constructor and Description |
|---|
VitalSigns()
Constructs an object of VitalSigns.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDate()
Returns the date of vital sign.
|
java.lang.String |
getUnit()
Returns the value for the vital sign.
|
java.lang.String |
getValue()
Returns the value for the vital sign.
|
java.lang.String |
getVitalSigns()
Returns the vital sign.
|
void |
setDate(java.lang.String date)
Sets the date of vital sign.
|
void |
setUnit(java.lang.String unit)
Sets the unit for the value of vital sign.
|
void |
setValue(java.lang.String value)
Sets the value for the vital sign.
|
void |
setVitalSigns(java.lang.String vitalSigns)
Sets the vital sign type.
|
public java.lang.String getDate()
public void setDate(java.lang.String date)
date - specifies the date of the vital signpublic java.lang.String getVitalSigns()
public void setVitalSigns(java.lang.String vitalSigns)
vitalSigns - specifies vital sign type.public java.lang.String getValue()
public void setValue(java.lang.String value)
value - specifies value for the vital sign.public java.lang.String getUnit()
public void setUnit(java.lang.String unit)
unit - specifies unit for the value of vital sign.