public class

ListSubscriptionsResult

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

Class Overview

Result of listSubscriptions(GoogleApiClient, DataType). Contains all of the returned subscriptions which can be retrieved by getSubscriptions().

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.

Summary

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

Fields

public static final Creator<ListSubscriptionsResult> CREATOR

Public Methods

public boolean equals (Object that)

Parameters
that Object
Returns
boolean

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().

Returns
Status

public List<Subscription> getSubscriptions (DataType dataType)

Returns all of the found subscriptions for the given dataType

Parameters
dataType DataType
Returns
List<Subscription> the list of retrieved data sources, empty if none were found

public List<Subscription> getSubscriptions ()

Returns all of the found subscriptions.

Returns
List<Subscription> the list of retrieved subscriptions, empty if none were found

public int hashCode ()

Returns
int

public String toString ()

Returns
String

public void writeToParcel (Parcel dest, int flags)

Parameters
dest Parcel
flags int