Uses of Class
org.codehaus.jackson.map.type.CollectionType
Packages that use CollectionType
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 CollectionType in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map with parameters of type CollectionTypeModifier and TypeMethodDescriptionabstract JsonDeserializer<?>
DeserializerFactory.createCollectionDeserializer
(DeserializationConfig config, DeserializerProvider p, CollectionType type, BeanProperty property) Deserializers.Base.findCollectionDeserializer
(CollectionType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Deserializers.findCollectionDeserializer
(CollectionType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Method called to locate serializer for specifiedCollection
(List, Set etc) type.Serializers.Base.findCollectionSerializer
(SerializationConfig config, CollectionType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Serializers.findCollectionSerializer
(SerializationConfig config, CollectionType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of CollectionType in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser with parameters of type CollectionTypeModifier and TypeMethodDescriptionprotected abstract JsonDeserializer<?>
BasicDeserializerFactory._findCustomCollectionDeserializer
(CollectionType type, DeserializationConfig config, DeserializerProvider p, BasicBeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeser, JsonDeserializer<?> elementDeser) protected JsonDeserializer<?>
BeanDeserializerFactory._findCustomCollectionDeserializer
(CollectionType type, DeserializationConfig config, DeserializerProvider provider, BasicBeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) BasicDeserializerFactory.createCollectionDeserializer
(DeserializationConfig config, DeserializerProvider p, CollectionType type, BeanProperty property) -
Uses of CollectionType in org.codehaus.jackson.map.module
Methods in org.codehaus.jackson.map.module with parameters of type CollectionTypeModifier and TypeMethodDescriptionSimpleDeserializers.findCollectionDeserializer
(CollectionType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) SimpleSerializers.findCollectionSerializer
(SerializationConfig config, CollectionType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of CollectionType in org.codehaus.jackson.map.ser
Methods in org.codehaus.jackson.map.ser with parameters of type CollectionTypeModifier and TypeMethodDescriptionprotected JsonSerializer<?>
BasicSerializerFactory.buildCollectionSerializer
(SerializationConfig config, CollectionType type, BasicBeanDescription beanDesc, BeanProperty property, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Helper method that handles configuration details when constructing serializers forList
types that support efficient by-index access -
Uses of CollectionType in org.codehaus.jackson.map.type
Methods in org.codehaus.jackson.map.type that return CollectionTypeModifier and TypeMethodDescriptionstatic CollectionType
TypeFactory.constructCollectionType
(Class<? extends Collection> collectionClass, Class<?> elementClass) Method for constructing aCollectionType
.TypeFactory.constructCollectionType
(Class<? extends Collection> collectionClass, JavaType elementType) Method for constructing aCollectionType
.TypeFactory.constructRawCollectionType
(Class<? extends Collection> collectionClass) Method that can be used to construct "raw" Collection type; meaning that its parameterization is unknown.CollectionType.withContentTypeHandler
(Object h) CollectionType.withContentValueHandler
(Object h) CollectionType.withTypeHandler
(Object h) CollectionType.withValueHandler
(Object h)