| 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 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). |
| Modifier and Type | Method and 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) |
| Modifier and Type | Method and Description |
|---|---|
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 like
Collection,
but does not implement it). |
JsonSerializer<?> |
Serializers.Base.findCollectionLikeSerializer(SerializationConfig config,
CollectionLikeType type,
BeanDescription beanDesc,
TypeSerializer elementTypeSerializer,
JsonSerializer<java.lang.Object> elementValueSerializer) |
JsonSerializer<?> |
BeanSerializerModifier.modifyCollectionLikeSerializer(SerializationConfig config,
CollectionLikeType valueType,
BeanDescription beanDesc,
JsonSerializer<?> serializer) |
| Modifier and Type | Class and Description |
|---|---|
class |
CollectionType
Type that represents Java Collection types (Lists, Sets).
|
| Modifier and Type | Method and Description |
|---|---|
static CollectionLikeType |
CollectionLikeType.construct(java.lang.Class<?> rawType,
JavaType elemT) |
CollectionLikeType |
TypeFactory.constructCollectionLikeType(java.lang.Class<?> collectionClass,
java.lang.Class<?> elementClass)
Method for constructing a
CollectionLikeType. |
CollectionLikeType |
TypeFactory.constructCollectionLikeType(java.lang.Class<?> collectionClass,
JavaType elementType)
Method for constructing a
CollectionLikeType. |
CollectionLikeType |
TypeFactory.constructRawCollectionLikeType(java.lang.Class<?> collectionClass)
Method that can be used to construct "raw" Collection-like type; meaning that its
parameterization is unknown.
|
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) |
Copyright © 2013. All Rights Reserved.