Ejemplo n.º 1
0
 @Override
 public void writeImpl(ByteQueue queue) {
   BACnetUtils.pushInt(queue, Float.floatToIntBits(value));
 }
Ejemplo n.º 2
0
 //
 // Reading and writing
 //
 public Real(ByteQueue queue) {
   readTag(queue);
   value = Float.intBitsToFloat(BACnetUtils.popInt(queue));
 }