| Package | Description | 
|---|---|
| com.fasterxml.jackson.databind | 
 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 | 
| 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.ext | 
 Contains extended support for "external" packages: things that
may or may not be present in runtime environment, but that are
commonly enough used so that explicit support can be added. 
 | 
| com.fasterxml.jackson.databind.module | 
 Package that contains classes and interfaces to help implement
 custom extension  
Modules
 (which are registered using
 ObjectMapper.registerModule(com.fasterxml.jackson.databind.Module). | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
Module.SetupContext.addDeserializers(Deserializers d)
Method that module can use to register additional deserializers to use for
 handling types. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
protected Deserializers[] | 
DeserializerFactoryConfig._additionalDeserializers
List of providers for additional deserializers, checked before considering default
 basic or bean deserializers. 
 | 
protected static Deserializers[] | 
DeserializerFactoryConfig.NO_DESERIALIZERS  | 
| Modifier and Type | Method and Description | 
|---|---|
Iterable<Deserializers> | 
DeserializerFactoryConfig.deserializers()  | 
| Modifier and Type | Method and Description | 
|---|---|
DeserializerFactoryConfig | 
DeserializerFactoryConfig.withAdditionalDeserializers(Deserializers additional)
Fluent/factory method used to construct a configuration object that
 has same deserializer providers as this instance, plus one specified
 as argument. 
 | 
| Constructor and 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. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
Deserializers.Base
Basic  
Deserializers implementation that implements all methods but provides
 no deserializers. | 
| Modifier and Type | Field and Description | 
|---|---|
protected static Deserializers[] | 
DeserializerFactory.NO_DESERIALIZERS  | 
| Modifier and Type | Method and Description | 
|---|---|
abstract DeserializerFactory | 
DeserializerFactory.withAdditionalDeserializers(Deserializers additional)
Convenience method for creating a new factory instance with additional deserializer
 provider. 
 | 
DeserializerFactory | 
BasicDeserializerFactory.withAdditionalDeserializers(Deserializers additional)
Convenience method for creating a new factory instance with additional deserializer
 provider. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
CoreXMLDeserializers
Container deserializers that handle "core" XML types: ones included in standard
 JDK 1.5. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
SimpleDeserializers
Simple implementation  
Deserializers which allows registration of
 deserializers based on raw (type erased class). | 
Copyright © 2012-2013 FasterXML. All Rights Reserved.