public interface BluetoothProperties
BluetoothProperties
interface enumerates the values for characteristic properties.
Multiple flags may be combined to create a set of properties.
Characteristic properties are not used to control access to the characteristic. The properties are only used as an indication to the client on how this characteristic may be used.
Refer to «Core Vol 3, Part G, 3.3.1.1 Characteristic Properties».
Modifier and Type | Field and Description |
---|---|
static int |
BROADCAST
Indicates that the characteristic value may be broadcasted in advertising data.
|
static int |
EXTENDED
Indicates that additional properties are defined in the Characteristic Extended Properties descriptor.
|
static int |
INDICATE
Indicates that the characteristic supports indications.
|
static int |
NONE
No property.
|
static int |
NOTIFY
Indicates that the characteristic supports notifications.
|
static int |
READ
Indicates that the characteristic value may be read.
|
static int |
WRITE
Indicates that the characteristic value may be written.
|
static int |
WRITE_NO_RESPONSE
Indicates that the characteristic value may be written (using write without response procedure).
|
static int |
WRITE_SIGNED
Indicates that the characteristic value may be written (using signed write procedure).
|
static final int NONE
static final int BROADCAST
static final int READ
static final int WRITE_NO_RESPONSE
static final int WRITE
static final int NOTIFY
static final int INDICATE
static final int WRITE_SIGNED
static final int EXTENDED