Uses of Class
com.fasterxml.jackson.core.JsonParser.NumberTypeFP
-
Packages that use JsonParser.NumberTypeFP Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonGenerator
) instances.com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.core.util 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.NumberTypeFP Modifier and Type Method Description JsonParser.NumberTypeFP
JsonParser. getNumberTypeFP()
If current token is of typeJsonToken.VALUE_NUMBER_FLOAT
, returns one ofJsonParser.NumberTypeFP
constants; otherwise returnsUNKNOWN
.static JsonParser.NumberTypeFP
JsonParser.NumberTypeFP. valueOf(java.lang.String name)
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.NumberTypeFP Modifier and Type Method Description JsonParser.NumberTypeFP
JsonParserBase. 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 Modifier and Type Method Description JsonParser.NumberTypeFP
JsonParserDelegate. getNumberTypeFP()
-