Class BleCharacteristic

java.lang.Object
com.gluonhq.attach.ble.BleCharacteristic

public class BleCharacteristic extends Object
Characteristics are defined attribute types that contain a single logical value. A BleCharacteristic is defined by an UUID, a list of properties, a value, and a list of descriptors
See Also:
  • Property Details

  • Constructor Details

    • BleCharacteristic

      public BleCharacteristic(UUID uuid)
  • Method Details

    • getUuid

      public UUID getUuid()
    • getProperties

      public String getProperties()
    • setProperties

      public void setProperties(String properties)
    • getValue

      public final byte[] getValue()
      Gets the value of the property value.
      Property description:
    • setValue

      public final void setValue(byte[] value)
      Sets the value of the property value.
      Property description:
    • valueProperty

      public final javafx.beans.property.ObjectProperty<byte[]> valueProperty()
      See Also:
    • getDescriptors

      public final javafx.collections.ObservableList<BleDescriptor> getDescriptors()
    • toString

      public String toString()
      Overrides:
      toString in class Object