Android APIs
public class

DataSourcesResult

extends Object
implements Result Parcelable
java.lang.Object
   ↳ com.google.android.gms.fitness.result.DataSourcesResult

Class Overview

Result of findDataSources(GoogleApiClient, DataSourcesRequest). Contains all of the retrieved data sources which matched the request. The method getDataSources() can be used to fetch the resulting data sources.

The calling app should check getStatus() to confirm that 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.

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<DataSourcesResult> CREATOR
Public Methods
int describeContents()
boolean equals(Object that)
List<DataSource> getDataSources(DataType dataType)
Returns all of the found data sources for the given dataType
List<DataSource> getDataSources()
Returns all of the found data sources.
Status getStatus()
Returns the status of this result.
int hashCode()
String toString()
void writeToParcel(Parcel dest, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.android.gms.common.api.Result
From interface android.os.Parcelable

Fields

public static final Creator<DataSourcesResult> CREATOR

Public Methods

public int describeContents ()

public boolean equals (Object that)

public List<DataSource> getDataSources (DataType dataType)

Returns all of the found data sources for the given dataType

Returns
  • the list of retrieved data sources, empty if none were found

public List<DataSource> getDataSources ()

Returns all of the found data sources.

Returns
  • the list of retrieved data sources, empty if none were found

public Status getStatus ()

Returns the status of this result. Use isSuccess() to determine whether the call was successful, and getStatusCode() to determine what the error cause was.

Certain errors are due to failures that can be resolved by launching a particular intent. The resolution intent is available via getResolution().

public int hashCode ()

public String toString ()

public void writeToParcel (Parcel dest, int flags)