Uses of Class
com.fasterxml.jackson.databind.jsontype.TypeDeserializer
-
Packages that use TypeDeserializer Package Description com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode
), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses.com.fasterxml.jackson.databind.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization.com.fasterxml.jackson.databind.jsontype.impl Package that contains standard implementations forTypeResolverBuilder
andTypeIdResolver
.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)
. -
-
Uses of TypeDeserializer in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return TypeDeserializer Modifier and Type Method Description TypeDeserializer
ObjectMapper.DefaultTypeResolverBuilder. buildTypeDeserializer(DeserializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes)
TypeDeserializer
DeserializationConfig. findTypeDeserializer(JavaType baseType)
Helper method that is needed to properly handle polymorphic referenced types, such as types referenced byAtomicReference
, or various "optional" types.Methods in com.fasterxml.jackson.databind with parameters of type TypeDeserializer Modifier and Type Method Description java.lang.Object
JsonDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
Deserialization called when type being deserialized is defined to contain additional type identifier, to allow for correctly instantiating correct subtype.java.lang.Object
JsonDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer, T intoValue)
Method similar toJsonDeserializer.deserializeWithType(JsonParser,DeserializationContext,TypeDeserializer)
but called when merging value. -
Uses of TypeDeserializer in com.fasterxml.jackson.databind.deser
Fields in com.fasterxml.jackson.databind.deser declared as TypeDeserializer Modifier and Type Field Description protected TypeDeserializer
SettableAnyProperty. _valueTypeDeserializer
protected TypeDeserializer
SettableBeanProperty. _valueTypeDeserializer
If value will contain type information (to support polymorphic handling), this is the type deserializer used to handle type resolution.Methods in com.fasterxml.jackson.databind.deser that return TypeDeserializer Modifier and Type Method Description TypeDeserializer
BasicDeserializerFactory. findPropertyContentTypeDeserializer(DeserializationConfig config, JavaType containerType, AnnotatedMember propertyEntity)
Method called to find and create a type information deserializer for values of given container (list, array, map) property, if one is needed.TypeDeserializer
BasicDeserializerFactory. findPropertyTypeDeserializer(DeserializationConfig config, JavaType baseType, AnnotatedMember annotated)
Method called to create a type information deserializer for values of given non-container property, if one is needed.TypeDeserializer
BasicDeserializerFactory. findTypeDeserializer(DeserializationConfig config, JavaType baseType)
abstract TypeDeserializer
DeserializerFactory. findTypeDeserializer(DeserializationConfig config, JavaType baseType)
Method called to find and create a type information deserializer for given base type, if one is needed.TypeDeserializer
SettableBeanProperty.Delegating. getValueTypeDeserializer()
TypeDeserializer
SettableBeanProperty. getValueTypeDeserializer()
Methods in com.fasterxml.jackson.databind.deser with parameters of type TypeDeserializer Modifier and Type Method Description protected JsonDeserializer<?>
BasicDeserializerFactory. _findCustomArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
protected JsonDeserializer<?>
BasicDeserializerFactory. _findCustomCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
protected JsonDeserializer<?>
BasicDeserializerFactory. _findCustomCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
protected JsonDeserializer<?>
BasicDeserializerFactory. _findCustomMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
protected JsonDeserializer<?>
BasicDeserializerFactory. _findCustomMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
protected JsonDeserializer<?>
BasicDeserializerFactory. _findCustomReferenceDeserializer(ReferenceType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)
static CreatorProperty
CreatorProperty. construct(PropertyName name, JavaType type, PropertyName wrapperName, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, com.fasterxml.jackson.annotation.JacksonInject.Value injectable, PropertyMetadata metadata)
Factory method for creatingCreatorProperty
instancesjava.lang.Object
AbstractDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
BeanDeserializerBase. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
JsonDeserializer<?>
Deserializers.Base. findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
JsonDeserializer<?>
Deserializers. findArrayDeserializer(ArrayType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
Method called to locate serializer for specified array type.JsonDeserializer<?>
Deserializers.Base. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
JsonDeserializer<?>
Deserializers. findCollectionDeserializer(CollectionType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
Method called to locate serializer for specifiedCollection
(List, Set etc) type.JsonDeserializer<?>
Deserializers.Base. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
JsonDeserializer<?>
Deserializers. findCollectionLikeDeserializer(CollectionLikeType type, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
Method called to locate serializer for specified "Collection-like" type (one that acts likeCollection
but does not implement it).JsonDeserializer<?>
Deserializers.Base. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
JsonDeserializer<?>
Deserializers. findMapDeserializer(MapType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
Method called to locate deserializer for specifiedMap
type.JsonDeserializer<?>
Deserializers.Base. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
JsonDeserializer<?>
Deserializers. findMapLikeDeserializer(MapLikeType type, DeserializationConfig config, BeanDescription beanDesc, KeyDeserializer keyDeserializer, TypeDeserializer elementTypeDeserializer, JsonDeserializer<?> elementDeserializer)
Method called to locate serializer for specified "Map-like" type (one that acts likeMap
but does not implement it).JsonDeserializer<?>
Deserializers.Base. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)
JsonDeserializer<?>
Deserializers. findReferenceDeserializer(ReferenceType refType, DeserializationConfig config, BeanDescription beanDesc, TypeDeserializer contentTypeDeserializer, JsonDeserializer<?> contentDeserializer)
Method called to locate deserializer for value that is of referential type,Constructors in com.fasterxml.jackson.databind.deser with parameters of type TypeDeserializer Constructor Description CreatorProperty(PropertyName name, JavaType type, PropertyName wrapperName, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, com.fasterxml.jackson.annotation.JacksonInject.Value injectable, PropertyMetadata metadata)
CreatorProperty(PropertyName name, JavaType type, PropertyName wrapperName, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, java.lang.Object injectableValueId, PropertyMetadata metadata)
Deprecated.Since 2.11 use factory method insteadSettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer typeDeser)
Deprecated.SettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer typeDeser)
SettableBeanProperty(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations)
SettableBeanProperty(PropertyName propName, JavaType type, PropertyName wrapper, TypeDeserializer typeDeser, Annotations contextAnnotations, PropertyMetadata metadata)
-
Uses of TypeDeserializer in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as TypeDeserializer Modifier and Type Field Description protected TypeDeserializer
TypeWrappedDeserializer. _typeDeserializer
Methods in com.fasterxml.jackson.databind.deser.impl with parameters of type TypeDeserializer Modifier and Type Method Description void
ExternalTypeHandler.Builder. addExternal(SettableBeanProperty property, TypeDeserializer typeDeser)
java.lang.Object
TypeWrappedDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type TypeDeserializer Constructor Description FieldProperty(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedField field)
MethodProperty(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method)
SetterlessProperty(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method)
TypeWrappedDeserializer(TypeDeserializer typeDeser, JsonDeserializer<?> deser)
-
Uses of TypeDeserializer in com.fasterxml.jackson.databind.deser.std
Fields in com.fasterxml.jackson.databind.deser.std declared as TypeDeserializer Modifier and Type Field Description protected TypeDeserializer
ObjectArrayDeserializer. _elementTypeDeserializer
If element instances have polymorphic type information, this is the type deserializer that can handle itprotected TypeDeserializer
CollectionDeserializer. _valueTypeDeserializer
If element instances have polymorphic type information, this is the type deserializer that can handle itprotected TypeDeserializer
EnumMapDeserializer. _valueTypeDeserializer
If value instances have polymorphic type information, this is the type deserializer that can handle itprotected TypeDeserializer
MapDeserializer. _valueTypeDeserializer
If value instances have polymorphic type information, this is the type deserializer that can handle itprotected TypeDeserializer
MapEntryDeserializer. _valueTypeDeserializer
If value instances have polymorphic type information, this is the type deserializer that can handle itprotected TypeDeserializer
ReferenceTypeDeserializer. _valueTypeDeserializer
Methods in com.fasterxml.jackson.databind.deser.std with parameters of type TypeDeserializer Modifier and Type Method Description java.lang.Object
ArrayBlockingQueueDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
CollectionDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
DelegatingDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
EnumMapDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
EnumSetDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
MapDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
MapEntryDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
NullifyingDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Boolean
NumberDeserializers.BooleanDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Double
NumberDeserializers.DoubleDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Integer
NumberDeserializers.IntegerDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
NumberDeserializers.NumberDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
As mentioned in class Javadoc, there is additional complexity in handling potentially mixed type information here.java.lang.Object[]
ObjectArrayDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
PrimitiveArrayDeserializers. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
ReferenceTypeDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
StdDelegatingDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
StdDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
Base implementation that does not assume specific type inclusion mechanism.java.lang.Object
StdNodeBasedDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser jp, DeserializationContext ctxt, TypeDeserializer td)
java.lang.Object
StdScalarDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
StringArrayDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
StringCollectionDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.String
StringDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
UntypedObjectDeserializer. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
java.lang.Object
UntypedObjectDeserializer.Vanilla. deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
ObjectArrayDeserializer
ObjectArrayDeserializer. withDeserializer(TypeDeserializer elemTypeDeser, JsonDeserializer<?> elemDeser)
Overridable fluent-factory method used to create contextual instancesprotected ArrayBlockingQueueDeserializer
ArrayBlockingQueueDeserializer. withResolved(JsonDeserializer<?> dd, JsonDeserializer<?> vd, TypeDeserializer vtd, NullValueProvider nuller, java.lang.Boolean unwrapSingle)
Fluent-factory method call to construct contextual instance.AtomicReferenceDeserializer
AtomicReferenceDeserializer. withResolved(TypeDeserializer typeDeser, JsonDeserializer<?> valueDeser)
protected CollectionDeserializer
CollectionDeserializer. withResolved(JsonDeserializer<?> dd, JsonDeserializer<?> vd, TypeDeserializer vtd, NullValueProvider nuller, java.lang.Boolean unwrapSingle)
Fluent-factory method call to construct contextual instance.EnumMapDeserializer
EnumMapDeserializer. withResolved(KeyDeserializer keyDeserializer, JsonDeserializer<?> valueDeserializer, TypeDeserializer valueTypeDeser, NullValueProvider nuller)
protected MapDeserializer
MapDeserializer. withResolved(KeyDeserializer keyDeser, TypeDeserializer valueTypeDeser, JsonDeserializer<?> valueDeser, NullValueProvider nuller, java.util.Set<java.lang.String> ignorable)
Fluent factory method used to create a copy with slightly different settings.protected MapDeserializer
MapDeserializer. withResolved(KeyDeserializer keyDeser, TypeDeserializer valueTypeDeser, JsonDeserializer<?> valueDeser, NullValueProvider nuller, java.util.Set<java.lang.String> ignorable, java.util.Set<java.lang.String> includable)
protected MapEntryDeserializer
MapEntryDeserializer. withResolved(KeyDeserializer keyDeser, TypeDeserializer valueTypeDeser, JsonDeserializer<?> valueDeser)
Fluent factory method used to create a copy with slightly different settings.ObjectArrayDeserializer
ObjectArrayDeserializer. withResolved(TypeDeserializer elemTypeDeser, JsonDeserializer<?> elemDeser, NullValueProvider nuller, java.lang.Boolean unwrapSingle)
protected abstract ReferenceTypeDeserializer<T>
ReferenceTypeDeserializer. withResolved(TypeDeserializer typeDeser, JsonDeserializer<?> valueDeser)
Mutant factory method called when changes are needed; should construct newly configured instance with new values as indicated.Constructors in com.fasterxml.jackson.databind.deser.std with parameters of type TypeDeserializer Constructor Description ArrayBlockingQueueDeserializer(JavaType containerType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator)
ArrayBlockingQueueDeserializer(JavaType containerType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator, JsonDeserializer<java.lang.Object> delegateDeser, NullValueProvider nuller, java.lang.Boolean unwrapSingle)
Constructor used when creating contextualized instances.AtomicReferenceDeserializer(JavaType fullType, ValueInstantiator inst, TypeDeserializer typeDeser, JsonDeserializer<?> deser)
CollectionDeserializer(JavaType collectionType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator)
Constructor for context-free instances, where we do not yet know which property is using this deserializer.CollectionDeserializer(JavaType collectionType, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator, JsonDeserializer<java.lang.Object> delegateDeser, NullValueProvider nuller, java.lang.Boolean unwrapSingle)
Constructor used when creating contextualized instances.EnumMapDeserializer(EnumMapDeserializer base, KeyDeserializer keyDeser, JsonDeserializer<?> valueDeser, TypeDeserializer vtd, NullValueProvider nuller)
EnumMapDeserializer(JavaType mapType, ValueInstantiator valueInst, KeyDeserializer keyDeser, JsonDeserializer<?> valueDeser, TypeDeserializer vtd, NullValueProvider nuller)
EnumMapDeserializer(JavaType mapType, KeyDeserializer keyDeser, JsonDeserializer<?> valueDeser, TypeDeserializer vtd)
Deprecated.MapDeserializer(MapDeserializer src, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, NullValueProvider nuller, java.util.Set<java.lang.String> ignorable)
MapDeserializer(MapDeserializer src, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser, NullValueProvider nuller, java.util.Set<java.lang.String> ignorable, java.util.Set<java.lang.String> includable)
MapDeserializer(JavaType mapType, ValueInstantiator valueInstantiator, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser)
MapEntryDeserializer(MapEntryDeserializer src, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser)
MapEntryDeserializer(JavaType type, KeyDeserializer keyDeser, JsonDeserializer<java.lang.Object> valueDeser, TypeDeserializer valueTypeDeser)
ObjectArrayDeserializer(ObjectArrayDeserializer base, JsonDeserializer<java.lang.Object> elemDeser, TypeDeserializer elemTypeDeser, NullValueProvider nuller, java.lang.Boolean unwrapSingle)
ObjectArrayDeserializer(JavaType arrayType0, JsonDeserializer<java.lang.Object> elemDeser, TypeDeserializer elemTypeDeser)
ReferenceTypeDeserializer(JavaType fullType, ValueInstantiator vi, TypeDeserializer typeDeser, JsonDeserializer<?> deser)
ReferenceTypeDeserializer(JavaType fullType, TypeDeserializer typeDeser, JsonDeserializer<?> deser)
Deprecated. -
Uses of TypeDeserializer in com.fasterxml.jackson.databind.jsontype
Methods in com.fasterxml.jackson.databind.jsontype that return TypeDeserializer Modifier and Type Method Description TypeDeserializer
TypeResolverBuilder. buildTypeDeserializer(DeserializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes)
Method for building type deserializer based on current configuration of this builder.abstract TypeDeserializer
TypeDeserializer. forProperty(BeanProperty prop)
Method called to create contextual version, to be used for values of given property. -
Uses of TypeDeserializer in com.fasterxml.jackson.databind.jsontype.impl
Subclasses of TypeDeserializer in com.fasterxml.jackson.databind.jsontype.impl Modifier and Type Class Description class
AsArrayTypeDeserializer
Type deserializer used withJsonTypeInfo.As.WRAPPER_ARRAY
inclusion mechanism.class
AsDeductionTypeDeserializer
ATypeDeserializer
capable of deducing polymorphic types based on the fields available.class
AsExternalTypeDeserializer
Type deserializer used withJsonTypeInfo.As.EXTERNAL_PROPERTY
inclusion mechanism.class
AsPropertyTypeDeserializer
Type deserializer used withJsonTypeInfo.As.PROPERTY
inclusion mechanism.class
AsWrapperTypeDeserializer
Type deserializer used withJsonTypeInfo.As.WRAPPER_OBJECT
inclusion mechanism.class
TypeDeserializerBase
Base class for all standard JacksonTypeDeserializer
s.Methods in com.fasterxml.jackson.databind.jsontype.impl that return TypeDeserializer Modifier and Type Method Description TypeDeserializer
StdTypeResolverBuilder. buildTypeDeserializer(DeserializationConfig config, JavaType baseType, java.util.Collection<NamedType> subtypes)
TypeDeserializer
AsArrayTypeDeserializer. forProperty(BeanProperty prop)
TypeDeserializer
AsDeductionTypeDeserializer. forProperty(BeanProperty prop)
TypeDeserializer
AsExternalTypeDeserializer. forProperty(BeanProperty prop)
TypeDeserializer
AsPropertyTypeDeserializer. forProperty(BeanProperty prop)
TypeDeserializer
AsWrapperTypeDeserializer. forProperty(BeanProperty prop)
abstract TypeDeserializer
TypeDeserializerBase. forProperty(BeanProperty prop)
-
Uses of TypeDeserializer in com.fasterxml.jackson.databind.module
-