Uses of Package
tools.jackson.databind.deser.impl
Packages that use tools.jackson.databind.deser.impl
Package
Description
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode
), as well as
writing Java Objects and trees as JSON.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.
Package that contains standard value and key deserializer implementations
Jackson uses for core JDK types.
Package that contains standard value and key deserializer base classes
that Jackson both uses for its own implementations and offers for
module developers as convenient partial implementations.
-
Classes in tools.jackson.databind.deser.impl used by tools.jackson.databind
-
Classes in tools.jackson.databind.deser.impl used by tools.jackson.databind.deserClassDescriptionObject that knows how to deserialize Object Ids.Class that encapsulates details of value injection that occurs before deserialization of a POJO.
-
Classes in tools.jackson.databind.deser.impl used by tools.jackson.databind.deser.beanClassDescriptionHelper class that is used to flatten JSON structure when using "external type id" (see
JsonTypeInfo.As.EXTERNAL_PROPERTY
).Object that knows how to deserialize Object Ids.Object that is responsible for handling acrobatics related to deserializing "unwrapped" values; sets of properties that are embedded (inlined) as properties of parent JSON object.Class that encapsulates details of value injection that occurs before deserialization of a POJO. -
Classes in tools.jackson.databind.deser.impl used by tools.jackson.databind.deser.implClassDescriptionHelper class that is used to flatten JSON structure when using "external type id" (see
JsonTypeInfo.As.EXTERNAL_PROPERTY
).This concrete sub-class implements property that is set directly assigning to a Field.SettableBeanProperty
implementation that will try to access value of the property first, and if non-null value found, pass that for update (usingValueDeserializer.deserialize(tools.jackson.core.JsonParser, tools.jackson.databind.DeserializationContext, Object)
) instead of constructing a new value.This concrete sub-class implements property that is set using regular "setter" method.SimpleNullValueProvider
that will simply return given constant value when a null is encountered; or, with a specially constructed instance (seeNullsConstantProvider.skipper()
, indicate the need for special behavior of skipping property altogether (not setting as anything OR throwing exception).SimpleNullValueProvider
that will always throw aInvalidNullException
when a null is encountered.Object that knows how to deserialize Object Ids.SpecializedSettableBeanProperty
implementation used for virtual property that represents Object Id that is used for some POJO types (or properties).This concrete sub-class implements Collection or Map property that is indirectly by getting the property value and directly modifying it.Object that is responsible for handling acrobatics related to deserializing "unwrapped" values; sets of properties that are embedded (inlined) as properties of parent JSON object. -
Classes in tools.jackson.databind.deser.impl used by tools.jackson.databind.deser.jdkClassDescriptionObject that is responsible for handling acrobatics related to deserializing "unwrapped" values; sets of properties that are embedded (inlined) as properties of parent JSON object.
-
Classes in tools.jackson.databind.deser.impl used by tools.jackson.databind.deser.std