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

Packages that use MapType
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 Package that contains concrete implementations of JavaType, as well as the factory (TypeFactory) for constructing instances from various input data types (like Class, Type) and programmatically (for structured types, arrays, Lists and Maps). 
 

Uses of MapType in org.codehaus.jackson.map
 

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

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

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

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

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