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.Deserializer class that can deserialize instances of specified Enum class from Strings and Integers.Deserializer forEnumMapvalues.Standard deserializer forEnumSets.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.Basic serializer that can take JSON "Object" structure and construct aMap.Entryinstance, with typed contents.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.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). -
Classes in tools.jackson.databind.deser.jdk used by tools.jackson.databind.ext.sql