Uses of Class
com.fasterxml.jackson.databind.AbstractTypeResolver
-
Packages that use AbstractTypeResolver 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.cfg Package that contains most of configuration-related classes; exception being couple of most-commonly used configuration things (like Feature enumerations) that are at the main level (com.fasterxml.jackson.databind
).com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.module Package that contains classes and interfaces to help implement custom extensionModule
s (which are registered usingObjectMapper.registerModule(com.fasterxml.jackson.databind.Module)
. -
-
Uses of AbstractTypeResolver in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type AbstractTypeResolver Modifier and Type Method Description void
Module.SetupContext. addAbstractTypeResolver(AbstractTypeResolver resolver)
Method that module can use to register additionalAbstractTypeResolver
instance, to handle resolution of abstract to concrete types (either by defaulting, or by materializing). -
Uses of AbstractTypeResolver in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as AbstractTypeResolver Modifier and Type Field Description protected AbstractTypeResolver[]
DeserializerFactoryConfig. _abstractTypeResolvers
List of objects that may be able to resolve abstract types to concrete types.protected static AbstractTypeResolver[]
DeserializerFactoryConfig. NO_ABSTRACT_TYPE_RESOLVERS
Methods in com.fasterxml.jackson.databind.cfg that return types with arguments of type AbstractTypeResolver Modifier and Type Method Description java.lang.Iterable<AbstractTypeResolver>
DeserializerFactoryConfig. abstractTypeResolvers()
Methods in com.fasterxml.jackson.databind.cfg with parameters of type AbstractTypeResolver Modifier and Type Method Description DeserializerFactoryConfig
DeserializerFactoryConfig. withAbstractTypeResolver(AbstractTypeResolver resolver)
Fluent/factory method used to construct a configuration object that has same configuration as this instance plus one additional abstract type resolver.Constructors in com.fasterxml.jackson.databind.cfg with parameters of type AbstractTypeResolver Constructor Description DeserializerFactoryConfig(Deserializers[] allAdditionalDeserializers, KeyDeserializers[] allAdditionalKeyDeserializers, BeanDeserializerModifier[] modifiers, AbstractTypeResolver[] atr, ValueInstantiators[] vi)
Copy-constructor that will create an instance that contains defined set of additional deserializer providers. -
Uses of AbstractTypeResolver in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser with parameters of type AbstractTypeResolver Modifier and Type Method Description DeserializerFactory
BasicDeserializerFactory. withAbstractTypeResolver(AbstractTypeResolver resolver)
Convenience method for creating a new factory instance with additionalAbstractTypeResolver
.abstract DeserializerFactory
DeserializerFactory. withAbstractTypeResolver(AbstractTypeResolver resolver)
Convenience method for creating a new factory instance with additionalAbstractTypeResolver
. -
Uses of AbstractTypeResolver in com.fasterxml.jackson.databind.module
Subclasses of AbstractTypeResolver in com.fasterxml.jackson.databind.module Modifier and Type Class Description class
SimpleAbstractTypeResolver
SimpleAbstractTypeResolver
implementation, which is based on static mapping from abstract super types into sub types (concrete or abstract), but retaining generic parameterization.
-