|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 Module s
(which are registered using
ObjectMapper.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 |
---|
Fields in org.codehaus.jackson.map declared as AbstractTypeResolver | |
---|---|
protected AbstractTypeResolver |
DeserializationConfig._abstractTypeResolver
To support on-the-fly class generation for interface and abstract classes it is possible to register "abstract type resolver". |
Methods in org.codehaus.jackson.map that return AbstractTypeResolver | |
---|---|
AbstractTypeResolver |
DeserializationConfig.getAbstractTypeResolver()
Deprecated. Since 1.8 resolvers should be registered using Module interface Will be removed from Jackson 2.0 |
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). |
void |
DeserializationConfig.setAbstractTypeResolver(AbstractTypeResolver atr)
Deprecated. Since 1.8 resolvers should be registered using Module interface. Will be removed from Jackson 2.0 |
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)
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. |
Uses of AbstractTypeResolver in org.codehaus.jackson.mrbean |
---|
Subclasses of AbstractTypeResolver in org.codehaus.jackson.mrbean | |
---|---|
class |
AbstractTypeMaterializer
Nifty class for pulling implementations of classes out of thin air. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |