Uses of Class
org.codehaus.jackson.map.type.MapLikeType
Packages that use MapLikeType
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
JsonParser
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(org.codehaus.jackson.map.Module)
.Contains implementation classes of serialization part of
data binding.
-
Uses of MapLikeType in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map with parameters of type MapLikeTypeModifier and TypeMethodDescriptionabstract JsonDeserializer
<?> DeserializerFactory.createMapLikeDeserializer
(DeserializationConfig config, DeserializerProvider p, MapLikeType type, BeanProperty property) Deserializers.Base.findMapLikeDeserializer
(MapLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Deserializers.findMapLikeDeserializer
(MapLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Method called to locate serializer for specified "Map-like" type (one that acts likeMap
but does not implement it).Serializers.Base.findMapLikeSerializer
(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, BeanProperty property, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Serializers.findMapLikeSerializer
(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, BeanProperty property, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of MapLikeType in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser with parameters of type MapLikeTypeModifier and TypeMethodDescriptionprotected abstract JsonDeserializer
<?> BasicDeserializerFactory._findCustomMapLikeDeserializer
(MapLikeType type, DeserializationConfig config, DeserializerProvider p, BasicBeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeser, TypeDeserializer elementTypeDeser, JsonDeserializer<?> elementDeser) protected JsonDeserializer
<?> BeanDeserializerFactory._findCustomMapLikeDeserializer
(MapLikeType type, DeserializationConfig config, DeserializerProvider provider, BasicBeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) BasicDeserializerFactory.createMapLikeDeserializer
(DeserializationConfig config, DeserializerProvider p, MapLikeType type, BeanProperty property) -
Uses of MapLikeType in org.codehaus.jackson.map.module
Methods in org.codehaus.jackson.map.module with parameters of type MapLikeTypeModifier and TypeMethodDescriptionSimpleDeserializers.findMapLikeDeserializer
(MapLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) SimpleSerializers.findMapLikeSerializer
(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, BeanProperty property, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of MapLikeType in org.codehaus.jackson.map.ser
Methods in org.codehaus.jackson.map.ser with parameters of type MapLikeTypeModifier and TypeMethodDescriptionprotected JsonSerializer
<?> BasicSerializerFactory.buildMapLikeSerializer
(SerializationConfig config, MapLikeType type, BasicBeanDescription beanDesc, BeanProperty property, boolean staticTyping, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Helper method that handles configuration details when constructing serializers for all "Map-like" types; both ones that implementMap
and ones that do not (but that have been indicated to behave like Maps). -
Uses of MapLikeType in org.codehaus.jackson.map.type
Subclasses of MapLikeType in org.codehaus.jackson.map.typeMethods in org.codehaus.jackson.map.type that return MapLikeTypeModifier and TypeMethodDescriptionstatic MapLikeType
TypeFactory.constructMapLikeType
(Class<?> mapClass, Class<?> keyClass, Class<?> valueClass) Method for constructing aMapLikeType
instanceTypeFactory.constructMapLikeType
(Class<?> mapClass, JavaType keyType, JavaType valueType) Method for constructing aMapLikeType
instanceTypeFactory.constructRawMapLikeType
(Class<?> mapClass) Method that can be used to construct "raw" Map-like type; meaning that its parameterization is unknown.MapLikeType.withContentTypeHandler
(Object h) MapLikeType.withContentValueHandler
(Object h) MapLikeType.withKeyTypeHandler
(Object h) MapLikeType.withKeyValueHandler
(Object h) MapLikeType.withTypeHandler
(Object h) MapLikeType.withValueHandler
(Object h)