Uses of Class
com.fasterxml.jackson.core.JsonParser.NumberType
-
Packages that use JsonParser.NumberType Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.filter com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality.com.fasterxml.jackson.databind.jsonFormatVisitors Classes used for exposing logical structure of POJOs as Jackson sees it, and exposed viaObjectMapper.acceptJsonFormatVisitor(Class, JsonFormatVisitorWrapper)andObjectMapper.acceptJsonFormatVisitor(com.fasterxml.jackson.databind.JavaType, JsonFormatVisitorWrapper)methods.com.fasterxml.jackson.databind.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model.com.fasterxml.jackson.databind.ser.std com.fasterxml.jackson.databind.util Utility classes for Mapper package. -
-
Uses of JsonParser.NumberType in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonParser.NumberType Modifier and Type Method Description abstract JsonParser.NumberTypeJsonParser. getNumberType()If current token is of typeJsonToken.VALUE_NUMBER_INTorJsonToken.VALUE_NUMBER_FLOAT, returns one ofJsonParser.NumberTypeconstants; otherwise returns null.JsonParser.NumberTypeTreeNode. 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.NumberTypeJsonParser.NumberType. valueOf(String name)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 com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that return JsonParser.NumberType Modifier and Type Method Description JsonParser.NumberTypeParserBase. getNumberType() -
Uses of JsonParser.NumberType in com.fasterxml.jackson.core.filter
Methods in com.fasterxml.jackson.core.filter that return JsonParser.NumberType Modifier and Type Method Description JsonParser.NumberTypeFilteringParserDelegate. getNumberType() -
Uses of JsonParser.NumberType in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return JsonParser.NumberType Modifier and Type Method Description JsonParser.NumberTypeJsonParserDelegate. getNumberType() -
Uses of JsonParser.NumberType in com.fasterxml.jackson.databind.jsonFormatVisitors
Methods in com.fasterxml.jackson.databind.jsonFormatVisitors with parameters of type JsonParser.NumberType Modifier and Type Method Description voidJsonIntegerFormatVisitor.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.NumberType Modifier and Type Method Description JsonParser.NumberTypeTreeTraversingParser. getNumberType()JsonParser.NumberTypeBaseJsonNode. numberType()Returns code that identifies type of underlying numeric value, if (and only if) node is a number node.JsonParser.NumberTypeBigIntegerNode. numberType()JsonParser.NumberTypeDecimalNode. numberType()JsonParser.NumberTypeDoubleNode. numberType()JsonParser.NumberTypeFloatNode. numberType()JsonParser.NumberTypeIntNode. numberType()JsonParser.NumberTypeLongNode. numberType()abstract JsonParser.NumberTypeNumericNode. numberType()JsonParser.NumberTypeShortNode. numberType() -
Uses of JsonParser.NumberType in com.fasterxml.jackson.databind.ser.std
Fields in com.fasterxml.jackson.databind.ser.std declared as JsonParser.NumberType Modifier and Type Field Description protected JsonParser.NumberTypeNumberSerializers.Base. _numberTypeMethods in com.fasterxml.jackson.databind.ser.std with parameters of type JsonParser.NumberType Modifier and Type Method Description protected 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.NumberType Constructor Description Base(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 Modifier and Type Method Description JsonParser.NumberTypeTokenBuffer.Parser. getNumberType()
-