Uses of Package
com.fasterxml.jackson.databind.deser.std
Packages that use com.fasterxml.jackson.databind.deser.std
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.
Contains extended support for "external" packages: things that
may or may not be present in runtime environment, but that are
commonly enough used so that explicit support can be added.
-
Classes in com.fasterxml.jackson.databind.deser.std used by com.fasterxml.jackson.databind.deser
-
-
Classes in com.fasterxml.jackson.databind.deser.std used by com.fasterxml.jackson.databind.deser.stdClassDescriptionWe 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.Intermediate base deserializer class that adds more shared accessor so that other classes can access information about contained (value) typesSimple deserializer for handlingDatevalues.Compared to plain oldDate, SQL version is easier to deal with: mostly because it is more limited.Simple deserializer for handlingTimestampvalues.Deserializer class that can deserialize instances of specified Enum class from Strings and Integers.Deserializer forEnumMapvalues.Standard deserializer forEnumSets.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).Basic deserializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.Basic serializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.Bogus deserializer that will simply skip all content there is to map and returns Java null reference.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.Base deserializer implementation for propertiesReferenceTypevalues.Intermediate class used both for convenience of binding and to supportPropertyNamingStrategy.Deserializer 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.Base class for common deserializers.DefaultKeyDeserializerimplementation used for mostMaptypes Jackson supports.Convenience deserializer that may be used to deserialize values given an intermediate tree representation (JsonNode).Base class for deserializers that handle types that are serialized as JSON scalars (non-structured, i.e.DefaultValueInstantiatorimplementation, which supports Creator methods that can be indicated by standard Jackson annotations.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).Deprecated. -
Classes in com.fasterxml.jackson.databind.deser.std used by com.fasterxml.jackson.databind.extClassDescriptionBase 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).Base class for common deserializers.Base class for deserializers that handle types that are serialized as JSON scalars (non-structured, i.e.