java.lang.Object | |
↳ | com.google.android.gms.fitness.result.DataReadResult |
Result of readData(GoogleApiClient, DataReadRequest)
.
Contains exactly one data set for each detailed data source requested in the
DataReadRequest
.
The methods getDataSet(DataType)
and getDataSet(DataSource)
can be used to
fetch the resulting detailed data for a specific data source.
If aggregate data was requested, then the result will return buckets created as per the bucketing strategy specified in the request. Each bucket will have one data set per aggregate data requested.
The method getBuckets()
can be used to retrieve the buckets.
The method getStatus()
can be be used to confirm if the request was successful.
In case the calling app is missing the required permissions, the returned status has status
code set to NEEDS_OAUTH_PERMISSIONS
. In this case the
caller should use startResolutionForResult(Activity, int)
to start an intent
to get the necessary consent from the user before retrying the request.
In case the app attempts to read custom data created by another app,
the returned status has status code set to INCONSISTENT_DATA_TYPE
.
[Expand]
Inherited Constants | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]()
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns all of the
Buckets with aggregated data.
| |||||||||||
Returns the resulting data set for the given
dataSource .
| |||||||||||
Returns the resulting data set for the given
dataType .
| |||||||||||
Returns all of the data sets in the result.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||||||||||||
![]() | |||||||||||||||||||||||||||||||||
![]() |
Returns all of the Buckets
with aggregated data. There will be exactly one
data set for each aggregated data source requested in the DataReadRequest
per
bucket. Returns an empty list if the read request failed.
Returns the resulting data set for the given dataSource
.
IllegalArgumentException | if the given data source was not part of the read request |
---|
Returns the resulting data set for the given dataType
. If more than one data source
for the given data type was requested, this method will return the data for an arbitrary
one. Use getDataSet(DataSource)
to read each specific data source.
IllegalArgumentException | if the given data type was not part of the read request |
---|
Returns all of the data sets in the result. There will be exactly one data set for each
data source requested in the DataReadRequest
.