Uses of Enum Class
com.fasterxml.jackson.core.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
(JsonGenerator)
instances.Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
Utility classes used by Jackson Core functionality.
Classes used for exposing logical structure of POJOs as Jackson
sees it, and exposed via
ObjectMapper.acceptJsonFormatVisitor(Class, JsonFormatVisitorWrapper)
and
ObjectMapper.acceptJsonFormatVisitor(com.fasterxml.jackson.databind.JavaType, JsonFormatVisitorWrapper)
methods.Contains concrete
JsonNode implementations
Jackson uses for the Tree model.Utility classes for Mapper package.
-
Uses of JsonParser.NumberType in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonParser.NumberTypeModifier and TypeMethodDescriptionabstract JsonParser.NumberTypeJsonParser.getNumberType()If current token is of typeJsonToken.VALUE_NUMBER_INTorJsonToken.VALUE_NUMBER_FLOAT, returns one ofJsonParser.NumberTypeconstants; otherwise returnsnull.TreeNode.numberType()If this node is a numeric type (as perJsonToken.isNumeric()), returns native type that node uses to store the numeric value; otherwise returns null.static JsonParser.NumberTypeReturns the enum constant of this class with the specified name.static JsonParser.NumberType[]JsonParser.NumberType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of JsonParser.NumberType in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that return JsonParser.NumberType -
Uses of JsonParser.NumberType in com.fasterxml.jackson.core.filter
Methods in com.fasterxml.jackson.core.filter that return JsonParser.NumberType -
Uses of JsonParser.NumberType in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return JsonParser.NumberType -
Uses of JsonParser.NumberType in com.fasterxml.jackson.databind.jsonFormatVisitors
Methods in com.fasterxml.jackson.databind.jsonFormatVisitors with parameters of type JsonParser.NumberTypeModifier and TypeMethodDescriptionvoidJsonIntegerFormatVisitor.Base.numberType(JsonParser.NumberType type) voidJsonIntegerFormatVisitor.numberType(JsonParser.NumberType type) voidJsonNumberFormatVisitor.Base.numberType(JsonParser.NumberType type) voidJsonNumberFormatVisitor.numberType(JsonParser.NumberType type) -
Uses of JsonParser.NumberType in com.fasterxml.jackson.databind.node
Methods in com.fasterxml.jackson.databind.node that return JsonParser.NumberTypeModifier and TypeMethodDescriptionTreeTraversingParser.getNumberType()BaseJsonNode.numberType()Returns code that identifies type of underlying numeric value, if (and only if) node is a number node.BigIntegerNode.numberType()DecimalNode.numberType()DoubleNode.numberType()FloatNode.numberType()IntNode.numberType()LongNode.numberType()abstract JsonParser.NumberTypeNumericNode.numberType()ShortNode.numberType() -
Uses of JsonParser.NumberType in com.fasterxml.jackson.databind.ser.std
Fields in com.fasterxml.jackson.databind.ser.std declared as JsonParser.NumberTypeModifier and TypeFieldDescriptionprotected final JsonParser.NumberTypeNumberSerializers.Base._numberTypeMethods in com.fasterxml.jackson.databind.ser.std with parameters of type JsonParser.NumberTypeModifier and TypeMethodDescriptionprotected voidStdSerializer.visitFloatFormat(JsonFormatVisitorWrapper visitor, JavaType typeHint, JsonParser.NumberType numberType) Helper method that calls necessary visit method(s) to indicate that the underlying JSON type is a floating-point JSON number.protected voidStdSerializer.visitIntFormat(JsonFormatVisitorWrapper visitor, JavaType typeHint, JsonParser.NumberType numberType) Helper method that calls necessary visit method(s) to indicate that the underlying JSON type is JSON Integer number.protected voidStdSerializer.visitIntFormat(JsonFormatVisitorWrapper visitor, JavaType typeHint, JsonParser.NumberType numberType, JsonValueFormat format) Helper method that calls necessary visit method(s) to indicate that the underlying JSON type is JSON Integer number, but that there is also a further format restriction involved.Constructors in com.fasterxml.jackson.databind.ser.std with parameters of type JsonParser.NumberTypeModifierConstructorDescriptionprotectedBase(Class<?> cls, JsonParser.NumberType numberType, String schemaType) -
Uses of JsonParser.NumberType in com.fasterxml.jackson.databind.util
Methods in com.fasterxml.jackson.databind.util that return JsonParser.NumberType