Uses of Class
com.fasterxml.jackson.databind.type.MapType
Packages that use MapType
Package
Description
Contains implementation classes of deserialization part of
data binding.
Package that contains classes and interfaces to help implement
custom extension
Module
s
(which are registered using
ObjectMapper.registerModule(com.fasterxml.jackson.databind.Module)
.Contains implementation classes of serialization part of
data binding.
-
Uses of MapType in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser that return MapTypeModifier and TypeMethodDescriptionprotected MapType
BasicDeserializerFactory._mapAbstractMapType
(JavaType type, DeserializationConfig config) Methods in com.fasterxml.jackson.databind.deser with parameters of type MapTypeModifier and TypeMethodDescriptionprotected JsonDeserializer
<?> BasicDeserializerFactory._findCustomMapDeserializer
(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) BasicDeserializerFactory.createMapDeserializer
(DeserializationContext ctxt, MapType type, BeanDescription beanDesc) abstract JsonDeserializer
<?> DeserializerFactory.createMapDeserializer
(DeserializationContext ctxt, MapType type, BeanDescription beanDesc) Deserializers.Base.findMapDeserializer
(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Deserializers.findMapDeserializer
(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Method called to locate deserializer for specifiedMap
type.BeanDeserializerModifier.modifyMapDeserializer
(DeserializationConfig config, MapType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer) Method called byBeanDeserializerFactory
after constructing defaultMapType
deserializer instance. -
Uses of MapType in com.fasterxml.jackson.databind.module
Methods in com.fasterxml.jackson.databind.module with parameters of type MapTypeModifier and TypeMethodDescriptionSimpleDeserializers.findMapDeserializer
(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) 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 MapTypeModifier and TypeMethodDescriptionprotected JsonSerializer
<?> BasicSerializerFactory.buildMapSerializer
(SerializerProvider prov, MapType type, BeanDescription beanDesc, boolean staticTyping, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Helper method that handles configuration details when constructing serializers forMap
types.Serializers.Base.findMapSerializer
(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) 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 specifiedMap
type.BeanSerializerModifier.modifyMapSerializer
(SerializationConfig config, MapType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) -
Uses of MapType in com.fasterxml.jackson.databind.type
Methods in com.fasterxml.jackson.databind.type that return MapTypeModifier and TypeMethodDescriptionstatic MapType
Deprecated.static MapType
MapType.construct
(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType keyT, JavaType valueT) TypeFactory.constructMapType
(Class<? extends Map> mapClass, JavaType keyType, JavaType valueType) Method for constructing aMapType
instanceTypeFactory.constructMapType
(Class<? extends Map> mapClass, Class<?> keyClass, Class<?> valueClass) Method for constructing aMapType
instanceTypeFactory.constructRawMapType
(Class<? extends Map> mapClass) Method that can be used to construct "raw" Map type; meaning that its parameterization is unknown.MapType.withContentTypeHandler
(Object h) MapType.withContentValueHandler
(Object h) MapType.withKeyType
(JavaType keyType) MapType.withKeyTypeHandler
(Object h) MapType.withKeyValueHandler
(Object h) MapType.withStaticTyping()
MapType.withTypeHandler
(Object h) MapType.withValueHandler
(Object h)