Uses of Class
org.codehaus.jackson.map.type.MapType
Packages that use MapType
Package
Description
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
JsonParserContains implementation classes of deserialization part of
data binding.
Package that contains classes and interfaces to help implement
custom extension
Modules
(which are registered using
ObjectMapper.registerModule(Module).Contains implementation classes of serialization part of
data binding.
-
Uses of MapType in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map with parameters of type MapTypeModifier and TypeMethodDescriptionabstract JsonDeserializer<?> DeserializerFactory.createMapDeserializer(DeserializationConfig config, DeserializerProvider p, MapType type, BeanProperty property) Deserializers.Base.findMapDeserializer(MapType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Deserializers.findMapDeserializer(MapType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Method called to locate deserializer for specifiedMaptype.Serializers.Base.findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, BeanProperty property, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Serializers.findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, BeanProperty property, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of MapType in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser with parameters of type MapTypeModifier and TypeMethodDescriptionprotected abstract JsonDeserializer<?> BasicDeserializerFactory._findCustomMapDeserializer(MapType type, DeserializationConfig config, DeserializerProvider p, BasicBeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeser, TypeDeserializer elementTypeDeser, JsonDeserializer<?> elementDeser) protected JsonDeserializer<?> BeanDeserializerFactory._findCustomMapDeserializer(MapType type, DeserializationConfig config, DeserializerProvider provider, BasicBeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) BasicDeserializerFactory.createMapDeserializer(DeserializationConfig config, DeserializerProvider p, MapType type, BeanProperty property) -
Uses of MapType in org.codehaus.jackson.map.module
Methods in org.codehaus.jackson.map.module with parameters of type MapTypeModifier and TypeMethodDescriptionSimpleDeserializers.findMapDeserializer(MapType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) SimpleSerializers.findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, BeanProperty property, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of MapType in org.codehaus.jackson.map.ser
Methods in org.codehaus.jackson.map.ser with parameters of type MapTypeModifier and TypeMethodDescriptionprotected JsonSerializer<?> BasicSerializerFactory.buildMapSerializer(SerializationConfig config, MapType type, BasicBeanDescription beanDesc, BeanProperty property, boolean staticTyping, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Helper method that handles configuration details when constructing serializers forMaptypes. -
Uses of MapType in org.codehaus.jackson.map.type
Methods in org.codehaus.jackson.map.type that return MapTypeModifier and TypeMethodDescriptionstatic MapTypeTypeFactory.constructMapType(Class<? extends Map> mapClass, Class<?> keyClass, Class<?> valueClass) Method for constructing aMapTypeinstanceTypeFactory.constructMapType(Class<? extends Map> mapClass, JavaType keyType, JavaType valueType) Method for constructing aMapTypeinstanceTypeFactory.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.withKeyTypeHandler(Object h) MapType.withKeyValueHandler(Object h) MapType.withTypeHandler(Object h) MapType.withValueHandler(Object h)