public class BluetoothGattDescriptor
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.bluetooth.BluetoothGattDescriptor |
Represents a Bluetooth GATT Descriptor
GATT Descriptors contain additional information and attributes of a GATT characteristic, BluetoothGattCharacteristic
. They can be used to describe the characteristic's features or to control certain behaviours of the characteristic.
Constants |
|
---|---|
int |
PERMISSION_READ Descriptor read permission |
int |
PERMISSION_READ_ENCRYPTED Descriptor permission: Allow encrypted read operations |
int |
PERMISSION_READ_ENCRYPTED_MITM Descriptor permission: Allow reading with man-in-the-middle protection |
int |
PERMISSION_WRITE Descriptor write permission |
int |
PERMISSION_WRITE_ENCRYPTED Descriptor permission: Allow encrypted writes |
int |
PERMISSION_WRITE_ENCRYPTED_MITM Descriptor permission: Allow encrypted writes with man-in-the-middle protection |
int |
PERMISSION_WRITE_SIGNED Descriptor permission: Allow signed write operations |
int |
PERMISSION_WRITE_SIGNED_MITM Descriptor permission: Allow signed write operations with man-in-the-middle protection |
Inherited constants |
---|
![]() android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<BluetoothGattDescriptor> |
CREATOR
|
public static final byte[] |
DISABLE_NOTIFICATION_VALUE Value used to disable notifications or indicatinos |
public static final byte[] |
ENABLE_INDICATION_VALUE Value used to enable indication for a client configuration descriptor |
public static final byte[] |
ENABLE_NOTIFICATION_VALUE Value used to enable notification for a client configuration descriptor |
Public constructors |
|
---|---|
BluetoothGattDescriptor(UUID uuid, int permissions) Create a new BluetoothGattDescriptor. |
Public methods |
|
---|---|
BluetoothGattCharacteristic |
getCharacteristic() Returns the characteristic this descriptor belongs to. |
int |
getPermissions() Returns the permissions for this descriptor. |
UUID |
getUuid() Returns the UUID of this descriptor. |
byte[] |
getValue() Returns the stored value for this descriptor This function returns the stored value for this descriptor as retrieved by calling |
boolean |
setValue(byte[] value) Updates the locally stored value of this descriptor. |
void |
writeToParcel(Parcel out, int flags) Flatten this object in to a Parcel. |
Inherited methods |
|
---|---|
![]() java.lang.Object
|
|
![]() android.os.Parcelable
|
int PERMISSION_READ
Descriptor read permission
Constant Value: 1 (0x00000001)
int PERMISSION_READ_ENCRYPTED
Descriptor permission: Allow encrypted read operations
Constant Value: 2 (0x00000002)
int PERMISSION_READ_ENCRYPTED_MITM
Descriptor permission: Allow reading with man-in-the-middle protection
Constant Value: 4 (0x00000004)
int PERMISSION_WRITE
Descriptor write permission
Constant Value: 16 (0x00000010)
int PERMISSION_WRITE_ENCRYPTED
Descriptor permission: Allow encrypted writes
Constant Value: 32 (0x00000020)
int PERMISSION_WRITE_ENCRYPTED_MITM
Descriptor permission: Allow encrypted writes with man-in-the-middle protection
Constant Value: 64 (0x00000040)
int PERMISSION_WRITE_SIGNED
Descriptor permission: Allow signed write operations
Constant Value: 128 (0x00000080)
int PERMISSION_WRITE_SIGNED_MITM
Descriptor permission: Allow signed write operations with man-in-the-middle protection
Constant Value: 256 (0x00000100)
byte[] DISABLE_NOTIFICATION_VALUE
Value used to disable notifications or indicatinos
byte[] ENABLE_INDICATION_VALUE
Value used to enable indication for a client configuration descriptor
byte[] ENABLE_NOTIFICATION_VALUE
Value used to enable notification for a client configuration descriptor
BluetoothGattDescriptor (UUID uuid, int permissions)
Create a new BluetoothGattDescriptor.
Requires BLUETOOTH
permission.
Parameters | |
---|---|
uuid |
UUID : The UUID for this descriptor |
permissions |
int : Permissions for this descriptor |
BluetoothGattCharacteristic getCharacteristic ()
Returns the characteristic this descriptor belongs to.
Returns | |
---|---|
BluetoothGattCharacteristic |
The characteristic. |
int getPermissions ()
Returns the permissions for this descriptor.
Returns | |
---|---|
int |
Permissions of this descriptor |
UUID getUuid ()
Returns the UUID of this descriptor.
Returns | |
---|---|
UUID |
UUID of this descriptor |
byte[] getValue ()
Returns the stored value for this descriptor
This function returns the stored value for this descriptor as retrieved by calling readDescriptor(BluetoothGattDescriptor)
. The cached value of the descriptor is updated as a result of a descriptor read operation.
Returns | |
---|---|
byte[] |
Cached value of the descriptor |
boolean setValue (byte[] value)
Updates the locally stored value of this descriptor.
This function modifies the locally stored cached value of this descriptor. To send the value to the remote device, call writeDescriptor(BluetoothGattDescriptor)
to send the value to the remote device.
Parameters | |
---|---|
value |
byte : New value for this descriptor |
Returns | |
---|---|
boolean |
true if the locally stored value has been set, false if the requested value could not be stored locally. |
void writeToParcel (Parcel out, int flags)
Flatten this object in to a Parcel.
Parameters | |
---|---|
out |
Parcel : The Parcel in which the object should be written. |
flags |
int : Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . |