コード例 #1
0
ファイル: Real.java プロジェクト: rekinyz/BACnet4J
 @Override
 public void writeImpl(ByteQueue queue) {
   BACnetUtils.pushInt(queue, Float.floatToIntBits(value));
 }
コード例 #2
0
ファイル: Real.java プロジェクト: rekinyz/BACnet4J
 //
 // Reading and writing
 //
 public Real(ByteQueue queue) {
   readTag(queue);
   value = Float.intBitsToFloat(BACnetUtils.popInt(queue));
 }