Class AsDeductionTypeDeserializer
java.lang.Object
com.fasterxml.jackson.databind.jsontype.TypeDeserializer
com.fasterxml.jackson.databind.jsontype.impl.TypeDeserializerBase
com.fasterxml.jackson.databind.jsontype.impl.AsArrayTypeDeserializer
com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer
com.fasterxml.jackson.databind.jsontype.impl.AsDeductionTypeDeserializer
- All Implemented Interfaces:
Serializable
A
TypeDeserializer capable of deducing polymorphic types based on the
fields available. Deduction is limited to the names of child properties
(not their values or, consequently, any nested descendants).
Exceptions will be thrown if not enough unique information is present
to select a single subtype.
The current deduction process does not support pojo-hierarchies such that the absence of child fields infers a parent type. That is, every deducible subtype MUST have some unique fields and the input data MUST contain said unique fields to provide a positive match.
- Since:
- 2.12
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAsDeductionTypeDeserializer(JavaType bt, TypeIdResolver idRes, JavaType defaultImpl, DeserializationConfig config, Collection<NamedType> subtypes) AsDeductionTypeDeserializer(AsDeductionTypeDeserializer src, BeanProperty property) -
Method Summary
Modifier and TypeMethodDescriptionThis is the trickiest thing to handle, since property we are looking for may be anywhere...forProperty(BeanProperty prop) Method called to create contextual version, to be used for values of given property.Methods inherited from class com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer
deserializeTypedFromAny, getTypeInclusionMethods inherited from class com.fasterxml.jackson.databind.jsontype.impl.AsArrayTypeDeserializer
deserializeTypedFromArray, deserializeTypedFromScalarMethods inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeDeserializerBase
baseType, baseTypeName, getDefaultImpl, getPropertyName, getTypeIdResolver, hasDefaultImpl, toStringMethods inherited from class com.fasterxml.jackson.databind.jsontype.TypeDeserializer
deserializeIfNatural, deserializeIfNatural
-
Constructor Details
-
AsDeductionTypeDeserializer
public AsDeductionTypeDeserializer(JavaType bt, TypeIdResolver idRes, JavaType defaultImpl, DeserializationConfig config, Collection<NamedType> subtypes) -
AsDeductionTypeDeserializer
-
-
Method Details
-
forProperty
Description copied from class:TypeDeserializerMethod called to create contextual version, to be used for values of given property. This may be the type itself (as is the case for bean properties), or values contained (forCollectionorMapvalued properties).- Overrides:
forPropertyin classAsPropertyTypeDeserializer
-
deserializeTypedFromObject
public Object deserializeTypedFromObject(JsonParser p, DeserializationContext ctxt) throws IOException Description copied from class:AsPropertyTypeDeserializerThis is the trickiest thing to handle, since property we are looking for may be anywhere...- Overrides:
deserializeTypedFromObjectin classAsPropertyTypeDeserializer- Throws:
IOException
-