Uses of Interface
com.fasterxml.jackson.databind.deser.ContextualDeserializer
Packages that use ContextualDeserializer
Package
Description
Contains implementation classes of deserialization part of
data binding.
Contains those implementation classes of deserialization part of
data binding that are not considered part of public or semi-public
interfaces.
Contains public standard implementations of abstraction that
Jackson uses.
-
Uses of ContextualDeserializer in com.fasterxml.jackson.databind.deser
Classes in com.fasterxml.jackson.databind.deser that implement ContextualDeserializerModifier and TypeClassDescriptionclassDeserializer only used for abstract types used as placeholders during polymorphic type handling deserialization.classDeserializer class that can deserialize instances of arbitrary bean objects, usually from JSON Object structs,classBase class forBeanDeserializer.classClass that handles deserialization using a separate Builder class, which is used for data binding and produces actual deserialized value at the end of data binding. -
Uses of ContextualDeserializer in com.fasterxml.jackson.databind.deser.impl
Classes in com.fasterxml.jackson.databind.deser.impl that implement ContextualDeserializerModifier and TypeClassDescriptionclassclassVariant ofBeanDeserializerused for handling deserialization of POJOs when serialized as JSON Arrays, instead of JSON Objects. -
Uses of ContextualDeserializer in com.fasterxml.jackson.databind.deser.std
Classes in com.fasterxml.jackson.databind.deser.std that implement ContextualDeserializerModifier and TypeClassDescriptionclassWe need a custom deserializer both becauseArrayBlockingQueuehas no default constructor AND because it has size limit used for constructing underlying storage automatically.classclassBasic serializer that can take JSON "Array" structure and construct aCollectioninstance, with typed contents.static classprotected static classstatic classSimple deserializer for handlingDatevalues.static classCompared to plain oldDate, SQL version is easier to deal with: mostly because it is more limited.static classSimple deserializer for handlingTimestampvalues.classBase class that simplifies implementations ofJsonDeserializers that mostly delegate functionality to another deserializer implementation (possibly forming a chaining of deserializers delegating functionality in some cases)classDeserializer class that can deserialize instances of specified Enum class from Strings and Integers.classDeserializer forEnumMapvalues.classStandard deserializer forEnumSets.classclassBasic deserializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.classBasic serializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.classSerializer that can serialize non-primitive arrays.classContainer for deserializers used for instantiating "primitive arrays", arrays that contain non-object java primitive types.classBase deserializer implementation for propertiesReferenceTypevalues.classDeserializer implementation where given Java type is first deserialized by a standard Jackson deserializer into a delegate type; and then this delegate type is converted using a configuredConverterinto desired target type.final classSeparate implementation for serializing String arrays (instead of usingObjectArrayDeserializer.final classSpecifically 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.classDeserializer that builds on basicBeanDeserializerbut override some aspects like instance construction.classDeserializer 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).