Uses of Class
com.fasterxml.jackson.databind.type.MapType

Packages that use MapType
com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding. 
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)
com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding. 
com.fasterxml.jackson.databind.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 com.fasterxml.jackson.databind.deser
 

Methods in com.fasterxml.jackson.databind.deser with parameters of type MapType
protected  JsonDeserializer<?> BasicDeserializerFactory._findCustomMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
abstract  JsonDeserializer<?> DeserializerFactory.createMapDeserializer(DeserializationContext ctxt, MapType type, BeanDescription beanDesc)
           
 JsonDeserializer<?> BasicDeserializerFactory.createMapDeserializer(DeserializationContext ctxt, MapType type, BeanDescription beanDesc)
           
 JsonDeserializer<?> Deserializers.findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
          Method called to locate deserializer for specified Map type.
 JsonDeserializer<?> Deserializers.Base.findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
 

Uses of MapType in com.fasterxml.jackson.databind.module
 

Methods in com.fasterxml.jackson.databind.module with parameters of type MapType
 JsonDeserializer<?> SimpleDeserializers.findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
           
 JsonSerializer<?> SimpleSerializers.findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
           
 

Uses of MapType in com.fasterxml.jackson.databind.ser
 

Methods in com.fasterxml.jackson.databind.ser with parameters of type MapType
protected  JsonSerializer<?> BasicSerializerFactory.buildMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, boolean staticTyping, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
          Helper method that handles configuration details when constructing serializers for Map types.
 JsonSerializer<?> Serializers.findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
          Method called by serialization framework first time a serializer is needed for specified Map type.
 JsonSerializer<?> Serializers.Base.findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)
           
 

Uses of MapType in com.fasterxml.jackson.databind.type
 

Methods in com.fasterxml.jackson.databind.type that return MapType
static MapType MapType.construct(Class<?> rawType, JavaType keyT, JavaType valueT)
           
 MapType TypeFactory.constructMapType(Class<? extends Map> mapClass, Class<?> keyClass, Class<?> valueClass)
          Method for constructing a MapType instance
 MapType TypeFactory.constructMapType(Class<? extends Map> mapClass, JavaType keyType, JavaType valueType)
          Method for constructing a MapType instance
 MapType TypeFactory.constructRawMapType(Class<? extends Map> mapClass)
          Method that can be used to construct "raw" Map type; meaning that its parameterization is unknown.
 MapType MapType.withContentTypeHandler(Object h)
           
 MapType MapType.withContentValueHandler(Object h)
           
 MapType MapType.withKeyTypeHandler(Object h)
           
 MapType MapType.withKeyValueHandler(Object h)
           
 MapType MapType.withTypeHandler(Object h)
           
 MapType MapType.withValueHandler(Object h)
           
 



Copyright © 2012 FasterXML. All Rights Reserved.