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 forTypeResolverBuilderandTypeIdResolver.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 classDeserializationContextContext for the process of deserialization a single root-level value.classSerializerProviderClass that defines API used byObjectMapperandJsonSerializers 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 DatabindContextDatabindContext. 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.deser Modifier and Type Class Description classDefaultDeserializationContextCompleteDeserializationContextimplementation that adds extended API forObjectMapper(andObjectReader) to call, as well as implements certain parts that base class has left abstract.static classDefaultDeserializationContext.ImplActual 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 JavaTypeTypeIdResolver. 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 DatabindContext Modifier and Type Method Description protected JavaTypeClassNameIdResolver. _typeFromId(String id, DatabindContext ctxt)protected JavaTypeMinimalClassNameIdResolver. _typeFromId(String id, DatabindContext ctxt)JavaTypeClassNameIdResolver. typeFromId(DatabindContext context, String id)JavaTypeTypeIdResolverBase. typeFromId(DatabindContext context, String id)JavaTypeTypeNameIdResolver. typeFromId(DatabindContext context, 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 classDefaultSerializerProviderStandard implementation used byObjectMapper: adds methods only exposed toObjectMapper, as well as constructors.static classDefaultSerializerProvider.ImplConcrete implementation that defines factory method(s), defined as final.
-