com.samsung.android.sdk.healthdata
Interface HealthConstants.WaterIntake
-
- All Superinterfaces:
- HealthConstants.Common, HealthConstants.DiscreteMeasurement
- Enclosing class:
- HealthConstants
public static interface HealthConstants.WaterIntake extends HealthConstants.DiscreteMeasurement
This interface defines water intake data of the user.Properties
Properties of the following extending interfaces are available for this data type.
Water intake data has the following properties.
See more common properties by spreading this section out.Property name Description HealthConstants.WaterIntake.DEVICE_UUID [Mandatory]
Device identifier which provides the health dataHealthConstants.WaterIntake.START_TIME [Mandatory]
UTC milliseconds when the measurement is startedHealthConstants.WaterIntake.TIME_OFFSET [Mandatory]
Time offset in milliseconds which considers the time zone and daylight saving timeHealthConstants.WaterIntake.AMOUNT [Mandatory]
Amount of water intakeHealthConstants.WaterIntake.UNIT_AMOUNT [Mandatory]
Amount for one unit of waterHealthConstants.WaterIntake.COMMENT Comment HealthConstants.WaterIntake.CUSTOM Custom info which is formatted with JSON and compressed data Data Permission
The user's consent is required to read or write this data type. HealthPermissionManager.requestPermissions() displays a data permission UI to the user.
See Permission Manager and request data permission.- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field and Description static String
AMOUNT
Amount of water intake in milliliters.static String
COMMENT
Comment for data.static String
HEALTH_DATA_TYPE
Data type name for water intake.static String
UNIT_AMOUNT
Amount in milliliters for one unit of water, e.g. in glass or bottle.-
Fields inherited from interface com.samsung.android.sdk.healthdata.HealthConstants.DiscreteMeasurement
START_TIME, TIME_OFFSET
-
Fields inherited from interface com.samsung.android.sdk.healthdata.HealthConstants.Common
CREATE_TIME, CUSTOM, DEVICE_UUID, PACKAGE_NAME, UPDATE_TIME, UUID
-
-
-
-
Field Detail
-
AMOUNT
static final String AMOUNT
Amount of water intake in milliliters.- Mandatory
- Type:
float
- Value range: 0 and above
- Since:
- 1.0.0
- See Also:
- Constant Field Values
-
UNIT_AMOUNT
static final String UNIT_AMOUNT
Amount in milliliters for one unit of water, e.g. in glass or bottle.
- Mandatory
- Type:
float
- Value range: 0 and above
Note: Samsung Health's unit amount is
250 ml
. If you want to show your app's water intake data rightly on Samsung Health, set it as250
.- Since:
- 1.0.0
- See Also:
- Constant Field Values
-
COMMENT
static final String COMMENT
Comment for data.- Optional
- Type:
String
- Value length: 0 ~ 255
- Since:
- 1.0.0
- See Also:
- Constant Field Values
-
HEALTH_DATA_TYPE
static final String HEALTH_DATA_TYPE
Data type name for water intake.
Use"com.samsung.health.water_intake"
to add permission to the manifest file.- See Also:
- Constant Field Values
-
-