| Package | Description | 
|---|---|
| com.fasterxml.jackson.databind.deser.std | 
 Contains public standard implementations of abstraction that
 Jackson uses. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
ArrayBlockingQueueDeserializer
We need a custom deserializer both because  
ArrayBlockingQueue has no
 default constructor AND because it has size limit used for constructing
 underlying storage automatically. | 
class  | 
CollectionDeserializer
Basic serializer that can take JSON "Array" structure and
 construct a  
Collection instance, with typed contents. | 
class  | 
MapDeserializer
Basic serializer that can take Json "Object" structure and
 construct a  
Map instance, with typed contents. | 
class  | 
ObjectArrayDeserializer
Basic serializer that can serialize non-primitive arrays. 
 | 
class  | 
StringCollectionDeserializer
Specifically optimized version for  
Collections
 that contain String values; reason is that this is a very common
 type and we can make use of the fact that Strings are final. | 
Copyright © 2012-2013 FasterXML. All Rights Reserved.