Uses of Class
com.fasterxml.jackson.databind.DatabindContext
Packages that use DatabindContext
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.
Package that contains interfaces that define how to implement
functionality for dynamically resolving type during deserialization.
Package that contains standard implementations for
TypeResolverBuilder
and
TypeIdResolver
.Contains implementation classes of serialization part of
data binding.
-
Uses of DatabindContext in com.fasterxml.jackson.databind
Subclasses of DatabindContext in com.fasterxml.jackson.databindModifier and TypeClassDescriptionclass
Context for the process of deserialization a single root-level value.class
Class that defines API used byObjectMapper
andJsonSerializer
s to obtain serializers capable of serializing instances of specific types; as well as the default implementation of the functionality.Methods in com.fasterxml.jackson.databind that return DatabindContextModifier and TypeMethodDescriptionabstract DatabindContext
DatabindContext.setAttribute
(Object key, Object value) Method for setting per-call value of given attribute. -
Uses of DatabindContext in com.fasterxml.jackson.databind.deser
Subclasses of DatabindContext in com.fasterxml.jackson.databind.deserModifier and TypeClassDescriptionclass
CompleteDeserializationContext
implementation that adds extended API forObjectMapper
(andObjectReader
) to call, as well as implements certain parts that base class has left abstract.static final class
Actual full concrete implementation -
Uses of DatabindContext in com.fasterxml.jackson.databind.jsontype
Methods in com.fasterxml.jackson.databind.jsontype with parameters of type DatabindContextModifier and TypeMethodDescriptionTypeIdResolver.typeFromId
(DatabindContext context, String id) Method called to resolve type from given type identifier. -
Uses of DatabindContext in com.fasterxml.jackson.databind.jsontype.impl
Methods in com.fasterxml.jackson.databind.jsontype.impl with parameters of type DatabindContextModifier and TypeMethodDescriptionprotected JavaType
ClassNameIdResolver._typeFromId
(String id, DatabindContext ctxt) protected JavaType
MinimalClassNameIdResolver._typeFromId
(String id, DatabindContext ctxt) ClassNameIdResolver.typeFromId
(DatabindContext context, String id) SimpleNameIdResolver.typeFromId
(DatabindContext context, String id) TypeIdResolverBase.typeFromId
(DatabindContext context, String id) TypeNameIdResolver.typeFromId
(DatabindContext context, String id) -
Uses of DatabindContext in com.fasterxml.jackson.databind.ser
Subclasses of DatabindContext in com.fasterxml.jackson.databind.serModifier and TypeClassDescriptionclass
Standard implementation used byObjectMapper
: adds methods only exposed toObjectMapper
, as well as constructors.static final class
Concrete implementation that defines factory method(s), defined as final.