Uses of Enum
com.fasterxml.jackson.core.JsonParser.NumberTypeFP
Packages that use JsonParser.NumberTypeFP
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser
)
and generator
(JsonGenerator
)
instances.JSON-specific parser and generator implementation classes that
Jackson defines and uses.
Utility classes used by Jackson Core functionality.
-
Uses of JsonParser.NumberTypeFP in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonParser.NumberTypeFPModifier and TypeMethodDescriptionJsonParser.getNumberTypeFP()
If current token is of typeJsonToken.VALUE_NUMBER_FLOAT
, returns one ofJsonParser.NumberTypeFP
constants; otherwise returnsUNKNOWN
.static JsonParser.NumberTypeFP
Returns the enum constant of this type with the specified name.static JsonParser.NumberTypeFP[]
JsonParser.NumberTypeFP.values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of JsonParser.NumberTypeFP in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return JsonParser.NumberTypeFPModifier and TypeMethodDescriptionJsonParserBase.getNumberTypeFP()
JSON format does not have native information on "correct" floating-point type to use, unlike some formats (most binary formats), so it needs to indicate this asUNKNOWN
. -
Uses of JsonParser.NumberTypeFP in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return JsonParser.NumberTypeFP