Uses of Class
com.fasterxml.jackson.databind.type.MapType
-
Packages that use MapType Package Description 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 extensionModules (which are registered usingObjectMapper.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 -
-
Uses of MapType in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser that return MapType Modifier and Type Method Description protected MapTypeBasicDeserializerFactory. _mapAbstractMapType(JavaType type, DeserializationConfig config)Methods in com.fasterxml.jackson.databind.deser with parameters of type MapType Modifier and Type Method Description protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>BasicDeserializerFactory. createMapDeserializer(DeserializationContext ctxt, MapType type, BeanDescription beanDesc)abstract JsonDeserializer<?>DeserializerFactory. createMapDeserializer(DeserializationContext ctxt, MapType type, BeanDescription beanDesc)JsonDeserializer<?>Deserializers.Base. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonDeserializer<?>Deserializers. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)Method called to locate deserializer for specifiedMaptype.JsonDeserializer<?>BeanDeserializerModifier. modifyMapDeserializer(DeserializationConfig config, MapType type, BeanDescription beanDesc, JsonDeserializer<?> deserializer)Method called byBeanDeserializerFactoryafter constructing defaultMapTypedeserializer instance. -
Uses of MapType in com.fasterxml.jackson.databind.module
Methods in com.fasterxml.jackson.databind.module with parameters of type MapType Modifier and Type Method Description 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 Modifier and Type Method Description protected 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 forMaptypes.JsonSerializer<?>Serializers.Base. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)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 specifiedMaptype.JsonSerializer<?>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 MapType Modifier and Type Method Description static MapTypeMapType. construct(Class<?> rawType, JavaType keyT, JavaType valueT)Deprecated.static MapTypeMapType. construct(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType keyT, JavaType valueT)MapTypeTypeFactory. constructMapType(Class<? extends Map> mapClass, JavaType keyType, JavaType valueType)Method for constructing aMapTypeinstanceMapTypeTypeFactory. constructMapType(Class<? extends Map> mapClass, Class<?> keyClass, Class<?> valueClass)Method for constructing aMapTypeinstanceMapTypeTypeFactory. constructRawMapType(Class<? extends Map> mapClass)Method that can be used to construct "raw" Map type; meaning that its parameterization is unknown.MapTypeMapType. withContentTypeHandler(Object h)MapTypeMapType. withContentValueHandler(Object h)MapTypeMapType. withKeyType(JavaType keyType)MapTypeMapType. withKeyTypeHandler(Object h)MapTypeMapType. withKeyValueHandler(Object h)MapTypeMapType. withStaticTyping()MapTypeMapType. withTypeHandler(Object h)MapTypeMapType. withValueHandler(Object h)
-