Uses of Package
tools.jackson.databind.deser.jdk
Packages that use tools.jackson.databind.deser.jdk
Package
Description
Package that contains standard value and key deserializer implementations
Jackson uses for core JDK types.
Package that contains handlers specific to SQL datatypes.
-
Classes in tools.jackson.databind.deser.jdk used by tools.jackson.databind.deser.jdkClassDescriptionWe need a custom deserializer both because
ArrayBlockingQueuehas no default constructor AND because it has size limit used for constructing underlying storage automatically.Basic serializer that can take JSON "Array" structure and construct aCollectioninstance, with typed contents.Helper class to maintain processing order of value.Helper class for dealing with Object Id references for values contained in collections being deserialized.Deserializer class that can deserialize instances of specified Enum class from Strings and Integers.Deserializer forEnumMapvalues.Standard deserializer forEnumSets.Deserializer that uses a single-String static factory method for locating Enum values by String id.Simple deserializer for handlingDatevalues.Base class for simple deserializers that serialize values from String representation: this includes JSON Strings and other Scalar values that can be coerced into text, like Numbers and Booleans).DefaultKeyDeserializerimplementation used for mostMapkey types Jackson supports.Basic deserializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.Helper class to maintain processing order of value.Basic serializer that can take JSON "Object" structure and construct aMap.Entryinstance, with typed contents.Internal capability interface for key deserializers that can signal null keys should be skipped during Map deserialization.This is bit trickier to implement efficiently, while avoiding overflow problems.For typeNumber.class, we can just rely on type mappings that plainJsonParser.getNumberValue()returns.Serializer that can serialize non-primitive arrays.Container for deserializers used for instantiating "primitive arrays", arrays that contain non-object java primitive types.When dealing with byte arrays we have one more alternative (compared to int/long/shorts): base64 encoded data.Intermediate class used both for convenience of binding and to supportPropertyNamingStrategy.Separate implementation for serializing String arrays (instead of usingObjectArrayDeserializer.Specifically optimized version forCollections that contain String values; reason is that this is a very common type and we can make use of the fact that Strings are final.Deserializer that builds on basicBeanDeserializerbut override some aspects like instance construction.Deserializer implementation that is used if it is necessary to bind content of "unknown" type; something declared as basicObject(either explicitly, or due to type erasure).Helper class used for building Maps and Lists/Arrays. -
Classes in tools.jackson.databind.deser.jdk used by tools.jackson.databind.ext.sql