|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CollectionType | |
|---|---|
| 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 CollectionType in com.fasterxml.jackson.databind.deser |
|---|
| Uses of CollectionType in com.fasterxml.jackson.databind.module |
|---|
| Methods in com.fasterxml.jackson.databind.module with parameters of type CollectionType | |
|---|---|
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 | |
|---|---|
protected JsonSerializer<?> |
BasicSerializerFactory.buildCollectionSerializer(SerializationConfig config,
CollectionType type,
BeanDescription beanDesc,
BeanProperty property,
boolean staticTyping,
TypeSerializer elementTypeSerializer,
JsonSerializer<Object> elementValueSerializer)
Helper method that handles configuration details when constructing serializers for List types that support efficient by-index access |
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 specified Collection type. |
JsonSerializer<?> |
Serializers.Base.findCollectionSerializer(SerializationConfig config,
CollectionType type,
BeanDescription beanDesc,
TypeSerializer elementTypeSerializer,
JsonSerializer<Object> elementValueSerializer)
|
| Uses of CollectionType in com.fasterxml.jackson.databind.type |
|---|
| Methods in com.fasterxml.jackson.databind.type that return CollectionType | |
|---|---|
static CollectionType |
CollectionType.construct(Class<?> rawType,
JavaType elemT)
|
CollectionType |
TypeFactory.constructCollectionType(Class<? extends Collection> collectionClass,
Class<?> elementClass)
Method for constructing a CollectionType. |
CollectionType |
TypeFactory.constructCollectionType(Class<? extends Collection> collectionClass,
JavaType elementType)
Method for constructing a CollectionType. |
CollectionType |
TypeFactory.constructRawCollectionType(Class<? extends Collection> collectionClass)
Method that can be used to construct "raw" Collection type; meaning that its parameterization is unknown. |
CollectionType |
CollectionType.withContentTypeHandler(Object h)
|
CollectionType |
CollectionType.withContentValueHandler(Object h)
|
CollectionType |
CollectionType.withTypeHandler(Object h)
|
CollectionType |
CollectionType.withValueHandler(Object h)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||