public class

BleDevicesResult

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

Class Overview

Result of listClaimedBleDevices(GoogleApiClient). Contains all user associated claimed BLE devices which matched the request. The method getClaimedBleDevices() can be used to fetch the resulting claimed BLE devices returned from the Google Fit store.

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<BleDevicesResult> CREATOR
Public Methods
int describeContents()
boolean equals(Object that)
List<BleDevice> getClaimedBleDevices(DataType dataType)
Returns all found claimed BLE devices for the given dataType
List<BleDevice> getClaimedBleDevices()
Returns all of the found claimed BLE devices.
Status getStatus()
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<BleDevicesResult> CREATOR

Public Methods

public int describeContents ()

public boolean equals (Object that)

public List<BleDevice> getClaimedBleDevices (DataType dataType)

Returns all found claimed BLE devices for the given dataType

Returns
  • the list of retrieved claimed BLE devices, empty if none were found.

public List<BleDevice> getClaimedBleDevices ()

Returns all of the found claimed BLE devices.

Returns
  • the list of retrieved BLE devices, empty if none were found.

public Status getStatus ()

public int hashCode ()

public String toString ()

public void writeToParcel (Parcel dest, int flags)