Uses of Class
org.codehaus.jackson.map.type.CollectionType

Packages that use CollectionType
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.type Concrete JavaType implementations. 
 

Uses of CollectionType in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map with parameters of type CollectionType
abstract  JsonDeserializer<?> DeserializerFactory.createCollectionDeserializer(DeserializationConfig config, CollectionType type, DeserializerProvider p)
           
 

Uses of CollectionType in org.codehaus.jackson.map.deser
 

Methods in org.codehaus.jackson.map.deser with parameters of type CollectionType
 JsonDeserializer<?> BasicDeserializerFactory.createCollectionDeserializer(DeserializationConfig config, CollectionType type, DeserializerProvider p)
           
 

Uses of CollectionType in org.codehaus.jackson.map.type
 

Methods in org.codehaus.jackson.map.type that return CollectionType
static CollectionType CollectionType.construct(Class<?> rawType, JavaType elemT)