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