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

com.fasterxml.jackson.core.io.doubleparser.DoubleBitsFromCharArray 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 double} from a {@code char} array. */ final class DoubleBitsFromCharArray extends AbstractFloatingPointBitsFromCharArray { /** * Creates a new instance. */ public DoubleBitsFromCharArray() { } @Override long nan() { return Double.doubleToRawLongBits(Double.NaN); } @Override long negativeInfinity() { return Double.doubleToRawLongBits(Double.NEGATIVE_INFINITY); } @Override long positiveInfinity() { return Double.doubleToRawLongBits(Double.POSITIVE_INFINITY); } @Override long valueOfFloatLiteral(char[] str, int startIndex, int endIndex, boolean isNegative, long significand, int exponent, boolean isSignificandTruncated, int exponentOfTruncatedSignificand) { double d = FastDoubleMath.tryDecFloatToDoubleTruncated(isNegative, significand, exponent, isSignificandTruncated, exponentOfTruncatedSignificand); return Double.doubleToRawLongBits(Double.isNaN(d) ? Double.parseDouble(new String(str, startIndex, endIndex - startIndex)) : d); } @Override long valueOfHexLiteral( char[] str, int startIndex, int endIndex, boolean isNegative, long significand, int exponent, boolean isSignificandTruncated, int exponentOfTruncatedSignificand) { double d = FastDoubleMath.tryHexFloatToDoubleTruncated(isNegative, significand, exponent, isSignificandTruncated, exponentOfTruncatedSignificand); return Double.doubleToRawLongBits(Double.isNaN(d) ? Double.parseDouble(new String(str, startIndex, endIndex - startIndex)) : d); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy