Uses of Class
com.fasterxml.jackson.databind.type.CollectionLikeType
-
Packages that use CollectionLikeType 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 CollectionLikeType in com.fasterxml.jackson.databind.deser
-
Uses of CollectionLikeType in com.fasterxml.jackson.databind.module
Methods in com.fasterxml.jackson.databind.module with parameters of type CollectionLikeType Modifier and Type Method Description JsonDeserializer<?>SimpleDeserializers. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)JsonSerializer<?>SimpleSerializers. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer) -
Uses of CollectionLikeType in com.fasterxml.jackson.databind.ser
Methods in com.fasterxml.jackson.databind.ser with parameters of type CollectionLikeType Modifier and Type Method Description JsonSerializer<?>Serializers.Base. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified "Collection-like" type (type that acts likeCollection, but does not implement it).JsonSerializer<?>BeanSerializerModifier. modifyCollectionLikeSerializer(SerializationConfig config, CollectionLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) -
Uses of CollectionLikeType in com.fasterxml.jackson.databind.type
Subclasses of CollectionLikeType in com.fasterxml.jackson.databind.type Modifier and Type Class Description classCollectionTypeType that represents Java Collection types (Lists, Sets).Methods in com.fasterxml.jackson.databind.type that return CollectionLikeType Modifier and Type Method Description static CollectionLikeTypeCollectionLikeType. construct(Class<?> rawType, JavaType elemT)Deprecated.Since 2.7, useupgradeFrom(com.fasterxml.jackson.databind.JavaType, com.fasterxml.jackson.databind.JavaType)for constructing instances, given pre-resolvedSimpleType.static CollectionLikeTypeCollectionLikeType. construct(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType elemT)CollectionLikeTypeTypeFactory. constructCollectionLikeType(Class<?> collectionClass, JavaType elementType)Method for constructing aCollectionLikeType.CollectionLikeTypeTypeFactory. constructCollectionLikeType(Class<?> collectionClass, Class<?> elementClass)Method for constructing aCollectionLikeType.CollectionLikeTypeTypeFactory. constructRawCollectionLikeType(Class<?> collectionClass)Method that can be used to construct "raw" Collection-like type; meaning that its parameterization is unknown.static CollectionLikeTypeCollectionLikeType. upgradeFrom(JavaType baseType, JavaType elementType)Factory method that can be used to "upgrade" a basic type into collection-like one; usually done viaTypeModifierCollectionLikeTypeCollectionLikeType. withContentTypeHandler(Object h)CollectionLikeTypeCollectionLikeType. withContentValueHandler(Object h)CollectionLikeTypeCollectionLikeType. withStaticTyping()CollectionLikeTypeCollectionLikeType. withTypeHandler(Object h)CollectionLikeTypeCollectionLikeType. withValueHandler(Object h)
-