Package ch.randelshofer.fastdoubleparser
package ch.randelshofer.fastdoubleparser
Provides fast parsers for Java
FloatingPointLiteral
s,
and JSON number
s.
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
BigDecimal
value; the supported syntax is compatible withBigDecimal(String)
.Parses aBigInteger
value; the supported syntax is compatible withBigInteger(String, int)
.Parses adouble
value; the supported syntax is compatible withDouble.valueOf(String)
.Parses afloat
value; the supported syntax is compatible withFloat.valueOf(String)
.Parses adouble
value; the supported syntax is compatible withnumber
in the JSON format specification.