BluetoothGattService
open class BluetoothGattService : Parcelable
| kotlin.Any | |
| ↳ | android.bluetooth.BluetoothGattService | 
Represents a Bluetooth GATT Service
Gatt Service contains a collection of BluetoothGattCharacteristic, as well as referenced services.
Summary
| Constants | |
|---|---|
| static Int | Primary service | 
| static Int | Secondary service (included by primary services) | 
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
| BluetoothGattService(uuid: UUID!, serviceType: Int)Create a new BluetoothGattService. | |
| Public methods | |
|---|---|
| open Boolean | addCharacteristic(characteristic: BluetoothGattCharacteristic!)Add a characteristic to this service. | 
| open Boolean | addService(service: BluetoothGattService!)Add an included service to this service. | 
| open BluetoothGattCharacteristic! | getCharacteristic(uuid: UUID!)Returns a characteristic with a given UUID out of the list of characteristics offered by this service. | 
| open MutableList<BluetoothGattCharacteristic!>! | Returns a list of characteristics included in this service. | 
| open MutableList<BluetoothGattService!>! | Get the list of included GATT services for this service. | 
| open Int | Returns the instance ID for this service | 
| open Int | getType()Get the type of this service (primary/secondary) | 
| open UUID! | getUuid()Returns the UUID of this service | 
| open Unit | writeToParcel(out: Parcel, flags: Int) | 
| Properties | |
|---|---|
| static Parcelable.Creator<BluetoothGattService!> | |
| MutableList<BluetoothGattCharacteristic!>! | List of characteristics included in this service. | 
| MutableList<BluetoothGattService!>! | List of included services for this service. | 
Constants
SERVICE_TYPE_PRIMARY
static val SERVICE_TYPE_PRIMARY: Int
Primary service
Value: 0SERVICE_TYPE_SECONDARY
static val SERVICE_TYPE_SECONDARY: Int
Secondary service (included by primary services)
Value: 1Public constructors
BluetoothGattService
BluetoothGattService(
uuid: UUID!,
serviceType: Int)
Create a new BluetoothGattService.
| Parameters | |
|---|---|
| uuid | UUID!: The UUID for this service | 
| serviceType | Int: The type of this service, android.bluetooth.BluetoothGattService#SERVICE_TYPE_PRIMARYorandroid.bluetooth.BluetoothGattService#SERVICE_TYPE_SECONDARY | 
Public methods
addCharacteristic
open fun addCharacteristic(characteristic: BluetoothGattCharacteristic!): Boolean
Add a characteristic to this service.
| Parameters | |
|---|---|
| characteristic | BluetoothGattCharacteristic!: The characteristics to be added | 
| Return | |
|---|---|
| Boolean | true, if the characteristic was added to the service | 
addService
open fun addService(service: BluetoothGattService!): Boolean
Add an included service to this service.
| Parameters | |
|---|---|
| service | BluetoothGattService!: The service to be added | 
| Return | |
|---|---|
| Boolean | true, if the included service was added to the service | 
getCharacteristic
open fun getCharacteristic(uuid: UUID!): BluetoothGattCharacteristic!
Returns a characteristic with a given UUID out of the list of characteristics offered by this service.
This is a convenience function to allow access to a given characteristic without enumerating over the list returned by getCharacteristics manually. 
If a remote service offers multiple characteristics with the same UUID, the first instance of a characteristic with the given UUID is returned.
| Return | |
|---|---|
| BluetoothGattCharacteristic! | GATT characteristic object or null if no characteristic with the given UUID was found. | 
getCharacteristics
open fun getCharacteristics(): MutableList<BluetoothGattCharacteristic!>!
Returns a list of characteristics included in this service.
| Return | |
|---|---|
| MutableList<BluetoothGattCharacteristic!>! | Characteristics included in this service | 
getIncludedServices
open fun getIncludedServices(): MutableList<BluetoothGattService!>!
Get the list of included GATT services for this service.
| Return | |
|---|---|
| MutableList<BluetoothGattService!>! | List of included services or empty list if no included services were discovered. | 
getInstanceId
open fun getInstanceId(): Int
Returns the instance ID for this service
If a remote device offers multiple services with the same UUID (ex. multiple battery services for different batteries), the instance ID is used to distinguish services.
| Return | |
|---|---|
| Int | Instance ID of this service | 
getType
open fun getType(): Int
Get the type of this service (primary/secondary)
getUuid
open fun getUuid(): UUID!
Returns the UUID of this service
| Return | |
|---|---|
| UUID! | UUID of this service | 
writeToParcel
open fun writeToParcel(
out: Parcel,
flags: Int
): Unit
| Parameters | |
|---|---|
| dest | The Parcel in which the object should be written. This value cannot be null. | 
| flags | Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either0or a combination ofandroid.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
Properties
mCharacteristics
protected var mCharacteristics: MutableList<BluetoothGattCharacteristic!>!
List of characteristics included in this service.
mIncludedServices
protected var mIncludedServices: MutableList<BluetoothGattService!>!
List of included services for this service.
