Uses of Class
com.fasterxml.jackson.databind.DatabindContext
-
Packages that use DatabindContext Package Description com.fasterxml.jackson.databind 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.com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization.com.fasterxml.jackson.databind.jsontype.impl Package that contains standard implementations forTypeResolverBuilder
andTypeIdResolver
.com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding. -
-
Uses of DatabindContext in com.fasterxml.jackson.databind
Subclasses of DatabindContext in com.fasterxml.jackson.databind Modifier and Type Class Description class
DeserializationContext
Context for the process of deserialization a single root-level value.class
SerializerProvider
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 DatabindContext Modifier and Type Method Description abstract DatabindContext
DatabindContext. setAttribute(java.lang.Object key, java.lang.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.deser Modifier and Type Class Description class
DefaultDeserializationContext
CompleteDeserializationContext
implementation that adds extended API forObjectMapper
(andObjectReader
) to call, as well as implements certain parts that base class has left abstract.static class
DefaultDeserializationContext.Impl
Actual full concrete implementation -
Uses of DatabindContext in com.fasterxml.jackson.databind.jsontype
Methods in com.fasterxml.jackson.databind.jsontype with parameters of type DatabindContext Modifier and Type Method Description JavaType
TypeIdResolver. typeFromId(DatabindContext context, java.lang.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 DatabindContext Modifier and Type Method Description protected JavaType
ClassNameIdResolver. _typeFromId(java.lang.String id, DatabindContext ctxt)
protected JavaType
MinimalClassNameIdResolver. _typeFromId(java.lang.String id, DatabindContext ctxt)
JavaType
ClassNameIdResolver. typeFromId(DatabindContext context, java.lang.String id)
JavaType
TypeIdResolverBase. typeFromId(DatabindContext context, java.lang.String id)
JavaType
TypeNameIdResolver. typeFromId(DatabindContext context, java.lang.String id)
-
Uses of DatabindContext in com.fasterxml.jackson.databind.ser
Subclasses of DatabindContext in com.fasterxml.jackson.databind.ser Modifier and Type Class Description class
DefaultSerializerProvider
Standard implementation used byObjectMapper
: adds methods only exposed toObjectMapper
, as well as constructors.static class
DefaultSerializerProvider.Impl
Concrete implementation that defines factory method(s), defined as final.
-