- java.lang.Object
-
- com.gluonhq.attach.ble.BleProfile
-
public class BleProfile extends java.lang.ObjectThe profile describes a use case, roles and general behaviors based on the GATT functionality. A BleProfile or BleService is defined by an UUID, a type and a list of characteristics For more info about BLE see: https://www.bluetooth.com/specifications/generic-attributes-overview- See Also:
BleCharacteristic
-
-
Constructor Summary
Constructors Constructor Description BleProfile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javafx.collections.ObservableList<BleCharacteristic>getCharacteristics()java.lang.StringgetType()java.util.UUIDgetUuid()voidsetType(java.lang.String type)voidsetUuid(java.util.UUID uuid)java.lang.StringtoString()
-
-
-
Method Detail
-
getUuid
public java.util.UUID getUuid()
-
setUuid
public void setUuid(java.util.UUID uuid)
-
getType
public java.lang.String getType()
-
setType
public void setType(java.lang.String type)
-
getCharacteristics
public final javafx.collections.ObservableList<BleCharacteristic> getCharacteristics()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-