Package ch.randelshofer.fastdoubleparser
package ch.randelshofer.fastdoubleparser
Provides fast parsers for Java
FloatingPointLiterals,
and JSON numbers.
References:
- The Java® Language Specification, Java SE 18 Edition, Chapter 3. Lexical Structure, 3.10.2. Floating-Point Literals
- docs.oracle.com
- IETF RFC 8259. The JavaScript Object Notation (JSON) Data Interchange Format, Chapter 6. Numbers
- www.ietf.org
-
ClassesClassDescriptionParses a
BigDecimalvalue; the supported syntax is compatible withBigDecimal(String).Parses aBigIntegervalue; the supported syntax is compatible withBigInteger(String, int).Parses adoublevalue; the supported syntax is compatible withDouble.valueOf(String).Parses afloatvalue; the supported syntax is compatible withFloat.valueOf(String).Parses adoublevalue; the supported syntax is compatible withnumberin the JSON format specification.