| Package | Description | 
|---|---|
| com.fasterxml.jackson.databind.deser.std | Contains public standard implementations of abstraction that
 Jackson uses. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ArrayBlockingQueueDeserializerWe need a custom deserializer both because  ArrayBlockingQueuehas no
 default constructor AND because it has size limit used for constructing
 underlying storage automatically. | 
| class  | CollectionDeserializerBasic serializer that can take JSON "Array" structure and
 construct a  Collectioninstance, with typed contents. | 
| class  | MapDeserializerBasic serializer that can take Json "Object" structure and
 construct a  Mapinstance, with typed contents. | 
| class  | ObjectArrayDeserializerBasic serializer that can serialize non-primitive arrays. | 
| class  | StringCollectionDeserializerSpecifically 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 © 2014 FasterXML. All Rights Reserved.