72737475767778
return new SinglePrecisionFloat(value); } } protected DataItem convert(double value) { return new DoublePrecisionFloat(value); }
30313233343536
bits |= nextSymbol() & 0xFF; bits <<= 8; bits |= nextSymbol() & 0xFF; bits <<= 8; bits |= nextSymbol() & 0xFF; return new DoublePrecisionFloat(Double.longBitsToDouble(bits)); }