Uses of Enum
org.codehaus.jackson.JsonParser.NumberType
Packages that use JsonParser.NumberType
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser
)
and generator
(JsonParser
)
instances.Parser and generator implementation classes that Jackson
defines and uses.
Contains concrete
JsonNode
implementations
Jackson uses for the Tree model.Package that contains experimental implementation of
"Binary-Encoded JSON-Like" data format handlers (parser,
generator, factory produce both, supporting constants).
Utility classes used by Jackson Core functionality.
-
Uses of JsonParser.NumberType in org.codehaus.jackson
Methods in org.codehaus.jackson that return JsonParser.NumberTypeModifier and TypeMethodDescriptionabstract JsonParser.NumberType
JsonNode.getNumberType()
If this node is a numeric type (as perJsonNode.isNumber()
), returns native type that node uses to store the numeric value.abstract JsonParser.NumberType
JsonParser.getNumberType()
If current token is of typeJsonToken.VALUE_NUMBER_INT
orJsonToken.VALUE_NUMBER_FLOAT
, returns one ofJsonParser.NumberType
constants; otherwise returns null.static JsonParser.NumberType
Returns the enum constant of this type with the specified name.static JsonParser.NumberType[]
JsonParser.NumberType.values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of JsonParser.NumberType in org.codehaus.jackson.impl
Methods in org.codehaus.jackson.impl that return JsonParser.NumberType -
Uses of JsonParser.NumberType in org.codehaus.jackson.node
Methods in org.codehaus.jackson.node that return JsonParser.NumberTypeModifier and TypeMethodDescriptionBaseJsonNode.getNumberType()
BigIntegerNode.getNumberType()
DecimalNode.getNumberType()
DoubleNode.getNumberType()
IntNode.getNumberType()
LongNode.getNumberType()
abstract JsonParser.NumberType
NumericNode.getNumberType()
TreeTraversingParser.getNumberType()
-
Uses of JsonParser.NumberType in org.codehaus.jackson.smile
Methods in org.codehaus.jackson.smile that return JsonParser.NumberType -
Uses of JsonParser.NumberType in org.codehaus.jackson.util
Methods in org.codehaus.jackson.util that return JsonParser.NumberTypeModifier and TypeMethodDescriptionJsonParserDelegate.getNumberType()
TokenBuffer.Parser.getNumberType()