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 extensionModule
s (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 Package that contains concrete implementations ofJavaType
, as well as the factory (TypeFactory
) for constructing instances from various input data types (likeClass
,Type
) and programmatically (for structured types, arrays,List
s andMap
s). -
-
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<java.lang.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<java.lang.Object> elementValueSerializer)
JsonSerializer<?>
Serializers. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<java.lang.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 class
CollectionType
Type that represents Java Collection types (Lists, Sets).Methods in com.fasterxml.jackson.databind.type that return CollectionLikeType Modifier and Type Method Description static CollectionLikeType
CollectionLikeType. construct(java.lang.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 CollectionLikeType
CollectionLikeType. construct(java.lang.Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType elemT)
CollectionLikeType
TypeFactory. constructCollectionLikeType(java.lang.Class<?> collectionClass, JavaType elementType)
Method for constructing aCollectionLikeType
.CollectionLikeType
TypeFactory. constructCollectionLikeType(java.lang.Class<?> collectionClass, java.lang.Class<?> elementClass)
Method for constructing aCollectionLikeType
.CollectionLikeType
TypeFactory. constructRawCollectionLikeType(java.lang.Class<?> collectionClass)
Method that can be used to construct "raw" Collection-like type; meaning that its parameterization is unknown.static CollectionLikeType
CollectionLikeType. upgradeFrom(JavaType baseType, JavaType elementType)
Factory method that can be used to "upgrade" a basic type into collection-like one; usually done viaTypeModifier
CollectionLikeType
CollectionLikeType. withContentTypeHandler(java.lang.Object h)
CollectionLikeType
CollectionLikeType. withContentValueHandler(java.lang.Object h)
CollectionLikeType
CollectionLikeType. withStaticTyping()
CollectionLikeType
CollectionLikeType. withTypeHandler(java.lang.Object h)
CollectionLikeType
CollectionLikeType. withValueHandler(java.lang.Object h)
-