All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.core.io.doubleparser.FloatBitsFromCharSequence Maven / Gradle / Ivy

There is a newer version: 2024.03.6
Show newest version
/**
 * References:
 * 
*
This class has been derived from "FastDoubleParser".
*
Copyright (c) Werner Randelshofer. Apache 2.0 License. * github.com.
*
*/ package com.fasterxml.jackson.core.io.doubleparser; /** * Parses a {@code float} from a {@link CharSequence}. */ class FloatBitsFromCharSequence extends AbstractFloatingPointBitsFromCharSequence { /** * Creates a new instance. */ public FloatBitsFromCharSequence() { } @Override long nan() { return Float.floatToRawIntBits(Float.NaN); } @Override long negativeInfinity() { return Float.floatToRawIntBits(Float.NEGATIVE_INFINITY); } @Override long positiveInfinity() { return Float.floatToRawIntBits(Float.POSITIVE_INFINITY); } @Override long valueOfFloatLiteral(CharSequence str, int startIndex, int endIndex, boolean isNegative, long significand, int exponent, boolean isSignificandTruncated, int exponentOfTruncatedSignificand) { float d = FastFloatMath.decFloatLiteralToFloat(isNegative, significand, exponent, isSignificandTruncated, exponentOfTruncatedSignificand); return Float.floatToRawIntBits(Float.isNaN(d) ? Float.parseFloat(str.subSequence(startIndex, endIndex).toString()) : d); } @Override long valueOfHexLiteral( CharSequence str, int startIndex, int endIndex, boolean isNegative, long significand, int exponent, boolean isSignificandTruncated, int exponentOfTruncatedSignificand) { float d = FastFloatMath.hexFloatLiteralToFloat(isNegative, significand, exponent, isSignificandTruncated, exponentOfTruncatedSignificand); return Float.floatToRawIntBits(Float.isNaN(d) ? Float.parseFloat(str.subSequence(startIndex, endIndex).toString()) : d); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy