Uses of Class
com.fasterxml.jackson.databind.type.CollectionType
-
Packages that use CollectionType 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 CollectionType in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser that return CollectionType Modifier and Type Method Description protected CollectionTypeBasicDeserializerFactory. _mapAbstractCollectionType(JavaType type, DeserializationConfig config) -
Uses of CollectionType in com.fasterxml.jackson.databind.module
Methods in com.fasterxml.jackson.databind.module with parameters of type CollectionType Modifier and Type Method Description JsonDeserializer<?>SimpleDeserializers. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonSerializer<?>SimpleSerializers. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of CollectionType in com.fasterxml.jackson.databind.ser
Methods in com.fasterxml.jackson.databind.ser with parameters of type CollectionType Modifier and Type Method Description protected JsonSerializer<?>BasicSerializerFactory. buildCollectionSerializer(SerializerProvider prov, CollectionType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forListtypes that support efficient by-index accessJsonSerializer<?>Serializers.Base. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specifiedCollectiontype.JsonSerializer<?>BeanSerializerModifier. modifyCollectionSerializer(SerializationConfig config, CollectionType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) -
Uses of CollectionType in com.fasterxml.jackson.databind.type
Methods in com.fasterxml.jackson.databind.type that return CollectionType Modifier and Type Method Description static CollectionTypeCollectionType. construct(Class<?> rawType, JavaType elemT)Deprecated.Since 2.7, remove from 2.9static CollectionTypeCollectionType. construct(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType elemT)CollectionTypeTypeFactory. constructCollectionType(Class<? extends Collection> collectionClass, JavaType elementType)Method for constructing aCollectionType.CollectionTypeTypeFactory. constructCollectionType(Class<? extends Collection> collectionClass, Class<?> elementClass)Method for constructing aCollectionType.CollectionTypeTypeFactory. constructRawCollectionType(Class<? extends Collection> collectionClass)Method that can be used to construct "raw" Collection type; meaning that its parameterization is unknown.CollectionTypeCollectionType. withContentTypeHandler(Object h)CollectionTypeCollectionType. withContentValueHandler(Object h)CollectionTypeCollectionType. withStaticTyping()CollectionTypeCollectionType. withTypeHandler(Object h)CollectionTypeCollectionType. withValueHandler(Object h)
-