Uses of Class
org.codehaus.jackson.map.type.CollectionLikeType
Packages that use CollectionLikeType
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 CollectionLikeType in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map with parameters of type CollectionLikeTypeModifier and TypeMethodDescriptionabstract JsonDeserializer
<?> DeserializerFactory.createCollectionLikeDeserializer
(DeserializationConfig config, DeserializerProvider p, CollectionLikeType type, BeanProperty property) Deserializers.Base.findCollectionLikeDeserializer
(CollectionLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Deserializers.findCollectionLikeDeserializer
(CollectionLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) Method called to locate serializer for specified "Collection-like" type (one that acts likeCollection
but does not implement it).Serializers.Base.findCollectionLikeSerializer
(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Serializers.findCollectionLikeSerializer
(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of CollectionLikeType in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser with parameters of type CollectionLikeTypeModifier and TypeMethodDescriptionprotected abstract JsonDeserializer
<?> BasicDeserializerFactory._findCustomCollectionLikeDeserializer
(CollectionLikeType type, DeserializationConfig config, DeserializerProvider p, BasicBeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeser, JsonDeserializer<?> elementDeser) protected JsonDeserializer
<?> BeanDeserializerFactory._findCustomCollectionLikeDeserializer
(CollectionLikeType type, DeserializationConfig config, DeserializerProvider provider, BasicBeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) BasicDeserializerFactory.createCollectionLikeDeserializer
(DeserializationConfig config, DeserializerProvider p, CollectionLikeType type, BeanProperty property) -
Uses of CollectionLikeType in org.codehaus.jackson.map.module
Methods in org.codehaus.jackson.map.module with parameters of type CollectionLikeTypeModifier and TypeMethodDescriptionSimpleDeserializers.findCollectionLikeDeserializer
(CollectionLikeType type, DeserializationConfig config, DeserializerProvider provider, BeanDescription beanDesc, BeanProperty property, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer) SimpleSerializers.findCollectionLikeSerializer
(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, BeanProperty property, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of CollectionLikeType in org.codehaus.jackson.map.ser
Methods in org.codehaus.jackson.map.ser with parameters of type CollectionLikeTypeModifier and TypeMethodDescriptionprotected JsonSerializer
<?> BasicSerializerFactory.buildCollectionLikeSerializer
(SerializationConfig config, CollectionLikeType type, BasicBeanDescription beanDesc, BeanProperty property, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) Helper method that handles configuration details when constructing serializers for Collection and Collection-like types. -
Uses of CollectionLikeType in org.codehaus.jackson.map.type
Subclasses of CollectionLikeType in org.codehaus.jackson.map.typeModifier and TypeClassDescriptionfinal class
Type that represents Java Collection types (Lists, Sets).Methods in org.codehaus.jackson.map.type that return CollectionLikeTypeModifier and TypeMethodDescriptionstatic CollectionLikeType
TypeFactory.constructCollectionLikeType
(Class<?> collectionClass, Class<?> elementClass) Method for constructing aCollectionLikeType
.TypeFactory.constructCollectionLikeType
(Class<?> collectionClass, JavaType elementType) Method for constructing aCollectionLikeType
.TypeFactory.constructRawCollectionLikeType
(Class<?> collectionClass) Method that can be used to construct "raw" Collection-like type; meaning that its parameterization is unknown.CollectionLikeType.withContentTypeHandler
(Object h) CollectionLikeType.withContentValueHandler
(Object h) CollectionLikeType.withTypeHandler
(Object h) CollectionLikeType.withValueHandler
(Object h)