Uses of Class
org.codehaus.jackson.map.AbstractTypeResolver
Packages that use AbstractTypeResolver
Package
Description
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper
class, as well
as convenience methods included in
JsonParser
Contains implementation classes of deserialization part of
data binding.
Package that contains classes and interfaces to help implement
custom extension
Module
s
(which are registered using
ObjectMapper.registerModule(org.codehaus.jackson.map.Module)
.-
Uses of AbstractTypeResolver in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return types with arguments of type AbstractTypeResolverModifier and TypeMethodDescriptionabstract Iterable<AbstractTypeResolver>
DeserializerFactory.Config.abstractTypeResolvers()
Methods in org.codehaus.jackson.map with parameters of type AbstractTypeResolverModifier and TypeMethodDescriptionvoid
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).abstract DeserializerFactory.Config
DeserializerFactory.Config.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.final DeserializerFactory
DeserializerFactory.withAbstractTypeResolver
(AbstractTypeResolver resolver) Convenience method for creating a new factory instance with additionalAbstractTypeResolver
.abstract DeserializerProvider
DeserializerProvider.withAbstractTypeResolver
(AbstractTypeResolver resolver) -
Uses of AbstractTypeResolver in org.codehaus.jackson.map.deser
Fields in org.codehaus.jackson.map.deser declared as AbstractTypeResolverModifier and TypeFieldDescriptionprotected final AbstractTypeResolver[]
BeanDeserializerFactory.ConfigImpl._abstractTypeResolvers
List of objects that may be able to resolve abstract types to concrete types.protected static final AbstractTypeResolver[]
BeanDeserializerFactory.ConfigImpl.NO_ABSTRACT_TYPE_RESOLVERS
Methods in org.codehaus.jackson.map.deser that return types with arguments of type AbstractTypeResolverMethods in org.codehaus.jackson.map.deser with parameters of type AbstractTypeResolverModifier and TypeMethodDescriptionBeanDeserializerFactory.ConfigImpl.withAbstractTypeResolver
(AbstractTypeResolver resolver) StdDeserializerProvider.withAbstractTypeResolver
(AbstractTypeResolver resolver) Constructors in org.codehaus.jackson.map.deser with parameters of type AbstractTypeResolverModifierConstructorDescriptionprotected
ConfigImpl
(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 org.codehaus.jackson.map.module
Subclasses of AbstractTypeResolver in org.codehaus.jackson.map.moduleModifier and TypeClassDescriptionclass
SimpleAbstractTypeResolver
implementation, which is based on static mapping from abstract super types into sub types (concrete or abstract), but retaining generic parameterization.