Class BleDescriptor


  • public class BleDescriptor
    extends java.lang.Object
    Descriptors are defined attributes that describe a characteristic value. A BleDescriptor is defined by an UUID and a value given by a raw byte array
    See Also:
    BleCharacteristic
    • Constructor Summary

      Constructors 
      Constructor Description
      BleDescriptor()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.UUID getUuid()  
      byte[] getValue()  
      void setUuid​(java.util.UUID uuid)  
      void setValue​(byte[] value)  
      java.lang.String toString()  
      javafx.beans.property.ObjectProperty<byte[]> valueProperty()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • BleDescriptor

        public BleDescriptor()
    • Method Detail

      • getUuid

        public java.util.UUID getUuid()
      • setUuid

        public void setUuid​(java.util.UUID uuid)
      • getValue

        public final byte[] getValue()
      • setValue

        public final void setValue​(byte[] value)
      • valueProperty

        public final javafx.beans.property.ObjectProperty<byte[]> valueProperty()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object