Uses of Class
org.codehaus.jackson.map.AbstractTypeResolver

Packages that use AbstractTypeResolver
org.codehaus.jackson.map 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 
org.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding. 
org.codehaus.jackson.map.module Package that contains classes and interfaces to help implement custom extension Modules (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 AbstractTypeResolver
abstract  Iterable<AbstractTypeResolver> DeserializerFactory.Config.abstractTypeResolvers()
           
 

Methods in org.codehaus.jackson.map with parameters of type AbstractTypeResolver
 void Module.SetupContext.addAbstractTypeResolver(AbstractTypeResolver resolver)
          Method that module can use to register additional AbstractTypeResolver instance, to handle resolution of abstract to concrete types (either by defaulting, or by materializing).
 DeserializerFactory DeserializerFactory.withAbstractTypeResolver(AbstractTypeResolver resolver)
          Convenience method for creating a new factory instance with additional AbstractTypeResolver.
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.
abstract  DeserializerProvider DeserializerProvider.withAbstractTypeResolver(AbstractTypeResolver resolver)
           
 

Uses of AbstractTypeResolver in org.codehaus.jackson.map.deser
 

Fields in org.codehaus.jackson.map.deser declared as AbstractTypeResolver
protected  AbstractTypeResolver[] BeanDeserializerFactory.ConfigImpl._abstractTypeResolvers
          List of objects that may be able to resolve abstract types to concrete types.
protected static AbstractTypeResolver[] BeanDeserializerFactory.ConfigImpl.NO_ABSTRACT_TYPE_RESOLVERS
           
 

Methods in org.codehaus.jackson.map.deser that return types with arguments of type AbstractTypeResolver
 Iterable<AbstractTypeResolver> BeanDeserializerFactory.ConfigImpl.abstractTypeResolvers()
           
 

Methods in org.codehaus.jackson.map.deser with parameters of type AbstractTypeResolver
 DeserializerFactory.Config BeanDeserializerFactory.ConfigImpl.withAbstractTypeResolver(AbstractTypeResolver resolver)
           
 DeserializerProvider StdDeserializerProvider.withAbstractTypeResolver(AbstractTypeResolver resolver)
           
 

Constructors in org.codehaus.jackson.map.deser with parameters of type AbstractTypeResolver
BeanDeserializerFactory.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.module
 class SimpleAbstractTypeResolver
          Simple AbstractTypeResolver implementation, which is based on static mapping from abstract super types into sub types (concrete or abstract), but retaining generic parameterization.