Uses of Class
org.codehaus.jackson.map.AbstractTypeResolver
-
Packages that use AbstractTypeResolver Package Description 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
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 extensionModule
s (which are registered usingObjectMapper.registerModule(org.codehaus.jackson.map.Module)
.org.codehaus.jackson.mrbean Package that implements "interface materializer" functionality, whereby abstract classes and interfaces can be used as-is, and framework constructs implementations as needed. -
-
Uses of AbstractTypeResolver in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return types with arguments of type AbstractTypeResolver Modifier and Type Method Description abstract java.lang.Iterable<AbstractTypeResolver>
DeserializerFactory.Config. abstractTypeResolvers()
Methods in org.codehaus.jackson.map 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).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.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 AbstractTypeResolver Modifier and Type Field Description 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 Modifier and Type Method Description java.lang.Iterable<AbstractTypeResolver>
BeanDeserializerFactory.ConfigImpl. abstractTypeResolvers()
Methods in org.codehaus.jackson.map.deser with parameters of type AbstractTypeResolver Modifier and Type Method Description DeserializerFactory.Config
BeanDeserializerFactory.ConfigImpl. withAbstractTypeResolver(AbstractTypeResolver resolver)
DeserializerProvider
StdDeserializerProvider. withAbstractTypeResolver(AbstractTypeResolver resolver)
Constructors in org.codehaus.jackson.map.deser with parameters of type AbstractTypeResolver Constructor Description 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 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. -
Uses of AbstractTypeResolver in org.codehaus.jackson.mrbean
Subclasses of AbstractTypeResolver in org.codehaus.jackson.mrbean Modifier and Type Class Description class
AbstractTypeMaterializer
Nifty class for pulling implementations of classes out of thin air.
-