public class

SessionStopResult

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

Class Overview

Result of stopSession(GoogleApiClient, String).

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<SessionStopResult> CREATOR
Public Methods
int describeContents()
boolean equals(Object o)
List<Session> getSessions()
Returns the list of sessions that were stopped by the request.
Status getStatus()
Returns the status of the call to Google Fit.
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<SessionStopResult> CREATOR

Public Methods

public int describeContents ()

public boolean equals (Object o)

public List<Session> getSessions ()

Returns the list of sessions that were stopped by the request. Returns an empty list if no active session was stopped.

public Status getStatus ()

Returns the status of the call to Google Fit. isSuccess() can be used to determine whether the call succeeded. In the case of failure, you can inspect the status to determine the reason.

public int hashCode ()

public String toString ()

public void writeToParcel (Parcel dest, int flags)