public class

BleDevice

extends Object
implements Parcelable
java.lang.Object
   ↳ com.google.android.gms.fitness.data.BleDevice

Class Overview

Representation of a BLE Device (such as a heart rate monitor) that broadcasts information about its on board sensors. The BLE device supports one or more GATT Profiles, which can be translated to one or more data type.

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<BleDevice> CREATOR
Public Methods
int describeContents()
boolean equals(Object o)
String getAddress()
Returns the address of the BLE device, from getAddress().
List<DataType> getDataTypes()
Returns all of the Fitness Platform data types supported by the device's supported profiles.
String getName()
Returns the name of the BLE device, from getName().
List<String> getSupportedProfiles()
Returns a list of supported GATT Profile Specification Types for the device which are also supported by the Fitness Platform.
int hashCode()
String toString()
void writeToParcel(Parcel parcel, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Fields

public static final Creator<BleDevice> CREATOR

Public Methods

public int describeContents ()

public boolean equals (Object o)

public String getAddress ()

Returns the address of the BLE device, from getAddress().

public List<DataType> getDataTypes ()

Returns all of the Fitness Platform data types supported by the device's supported profiles.

Note that in some GATT profiles certain characteristics are optional. This method will return an optional data type even if the device doesn't support it. Registering to updates from a non-supported optional data type from a supported profile will succeed, but no data will be returned.

public String getName ()

Returns the name of the BLE device, from getName().

public List<String> getSupportedProfiles ()

Returns a list of supported GATT Profile Specification Types for the device which are also supported by the Fitness Platform.

public int hashCode ()

public String toString ()

public void writeToParcel (Parcel parcel, int flags)