|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CollectionLikeType | |
|---|---|
| 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 extension Modules
(which are registered using
ObjectMapper.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 of
JavaType, as
well as the factory (TypeFactory) for
constructing instances from various input data types
(like Class, Type)
and programmatically (for structured types, arrays,
Lists and Maps). |
| 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 | |
|---|---|
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 | |
|---|---|
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 like Collection,
but does not implement it). |
JsonSerializer<?> |
Serializers.Base.findCollectionLikeSerializer(SerializationConfig config,
CollectionLikeType type,
BeanDescription beanDesc,
TypeSerializer elementTypeSerializer,
JsonSerializer<Object> elementValueSerializer)
|
| Uses of CollectionLikeType in com.fasterxml.jackson.databind.type |
|---|
| Subclasses of CollectionLikeType in com.fasterxml.jackson.databind.type | |
|---|---|
class |
CollectionType
Type that represents Java Collection types (Lists, Sets). |
| Methods in com.fasterxml.jackson.databind.type that return CollectionLikeType | |
|---|---|
static CollectionLikeType |
CollectionLikeType.construct(Class<?> rawType,
JavaType elemT)
|
CollectionLikeType |
TypeFactory.constructCollectionLikeType(Class<?> collectionClass,
Class<?> elementClass)
Method for constructing a CollectionLikeType. |
CollectionLikeType |
TypeFactory.constructCollectionLikeType(Class<?> collectionClass,
JavaType elementType)
Method for constructing a CollectionLikeType. |
CollectionLikeType |
TypeFactory.constructRawCollectionLikeType(Class<?> collectionClass)
Method that can be used to construct "raw" Collection-like type; meaning that its parameterization is unknown. |
CollectionLikeType |
CollectionLikeType.withContentTypeHandler(Object h)
|
CollectionLikeType |
CollectionLikeType.withContentValueHandler(Object h)
|
CollectionLikeType |
CollectionLikeType.withTypeHandler(Object h)
|
CollectionLikeType |
CollectionLikeType.withValueHandler(Object h)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||