Class BuilderBasedDeserializer
- All Implemented Interfaces:
NullValueProvider,ValueInstantiator.Gettable
Note on implementation: much of code has been copied from
BeanDeserializer; there may be opportunities to
refactor this in future.
-
Nested Class Summary
Nested classes/interfaces inherited from class tools.jackson.databind.ValueDeserializer
ValueDeserializer.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final AnnotatedMethodprotected SettableBeanProperty[]protected PropertyNameMatcherprotected final JavaTypeType that the builder will produce, target type; as opposed to `handledType()` which refers to Builder class.Fields inherited from class tools.jackson.databind.deser.bean.BeanDeserializerBase
_anySetter, _arrayDelegateDeserializer, _backRefs, _beanProperties, _beanType, _delegateDeserializer, _externalTypeIdHandler, _ignorableProps, _ignoreAllUnknown, _includableProps, _injectables, _needViewProcesing, _nonStandardCreation, _objectIdReader, _propertyBasedCreator, _serializationShape, _subDeserializers, _unwrappedPropertyHandler, _valueInstantiator, _vanillaProcessing, TEMP_PROPERTY_NAMEFields inherited from class tools.jackson.databind.deser.std.StdDeserializer
_valueClass, _valueType, F_MASK_INT_COERCIONS -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCopy-constructor that can be used by sub-classes to allow copy-on-write styling copying of settings of an existing instance.protectedBuilderBasedDeserializer(BuilderBasedDeserializer src, boolean ignoreAllUnknown) BuilderBasedDeserializer(BuilderBasedDeserializer src, Set<String> ignorableProps) BuilderBasedDeserializer(BuilderBasedDeserializer src, Set<String> ignorableProps, Set<String> includableProps) protectedBuilderBasedDeserializer(BuilderBasedDeserializer src, UnwrappedPropertyHandler unwrapHandler, PropertyBasedCreator pbCreator, BeanPropertyMap renamedProperties, boolean ignoreAllUnknown) BuilderBasedDeserializer(BeanDeserializerBuilder builder, BeanDescription.Supplier beanDescRef, JavaType targetType, BeanPropertyMap properties, Map<String, SettableBeanProperty> backRefs, Set<String> ignorableProps, boolean ignoreAllUnknown, boolean hasViews) Constructor used byBeanDeserializerBuilder.BuilderBasedDeserializer(BeanDeserializerBuilder builder, BeanDescription.Supplier beanDescRef, JavaType targetType, BeanPropertyMap properties, Map<String, SettableBeanProperty> backRefs, Set<String> ignorableProps, boolean ignoreAllUnknown, Set<String> includableProps, boolean hasViews) -
Method Summary
Modifier and TypeMethodDescriptionprotected final Object_deserialize(JsonParser p, DeserializationContext ctxt, Object builder) protected ObjectHelper method that allows easy support for array-related coercion features: checks for either empty array, or single-value array-wrapped value (if coercion enabled byCoercionConfigs(since 2.12), and either reports an exception (if no coercion allowed), or returns appropriate result value using coercion mechanism indicated.protected ObjectMethod called to deserialize bean using "property-based creator": this means that a non-default constructor or factory method is called, and then possibly other setters.protected Object_handleUnexpectedWithin(JsonParser p, DeserializationContext ctxt, Object beanOrBuilder) Method called if an unexpected token (other thenFIELD_NAME) is found after POJO has been instantiated and partially bound.protected BeanDeserializerBaseFluent factory for creating a variant that can handle POJO output as a JSON Array.deserialize(JsonParser p, DeserializationContext ctxt) Main deserialization method for bean-based objects (POJOs).deserialize(JsonParser p, DeserializationContext ctxt, Object value) Secondary deserialization method, called in cases where POJO instance is created as part of deserialization, potentially after collecting some or all of the properties to set.General version used when handling needs more advanced features.protected Objectprotected Objectprotected Objectprotected ObjectdeserializeWithExternalTypeId(JsonParser p, DeserializationContext ctxt, Object bean) protected ObjectMethod called when there are declared "unwrapped" properties which need special handlingprotected ObjectdeserializeWithUnwrapped(JsonParser p, DeserializationContext ctxt, Object builder, TokenBuffer tokens) protected final ObjectdeserializeWithView(JsonParser p, DeserializationContext ctxt, Object bean, Class<?> activeView) protected ObjectfinishBuild(DeserializationContext ctxt, Object builder) protected voidsupportsUpdate(DeserializationConfig config) Introspection method that may be called to see whether deserializer supports update of an existing value (aka "merging") or not.unwrappingDeserializer(DeserializationContext ctxt, NameTransformer transformer) Method that will return deserializer instance that is able to handle "unwrapped" value instances If no unwrapped instance can be constructed, will simply return this object as-is.Mutant factory method that custom sub-classes must override; not left as abstract to prevent more drastic backwards compatibility problems.withByNameInclusion(Set<String> ignorableProps, Set<String> includableProps) withIgnoreAllUnknown(boolean ignoreUnknown) Methods inherited from class tools.jackson.databind.deser.bean.BeanDeserializerBase
_convertObjectId, _delegateDeserializer, _delegateDeserializer, _findConvertingDeserializer, _findPropertyUnwrapper, _findSubclassDeserializer, _getSetterInfo, _handleByNameInclusion, _handleTypedObjectId, _replaceProperty, _resolvedObjectIdProperty, _resolveInnerClassValuedProperty, _resolveManagedReferenceProperty, _resolveMergeAndNullSettings, createContextual, creatorProperties, deserializeFromBoolean, deserializeFromDouble, deserializeFromEmbedded, deserializeFromNumber, deserializeFromObjectId, deserializeFromObjectUsingNonDefault, deserializeFromString, deserializeWithObjectId, deserializeWithType, findBackReference, findProperty, findProperty, findProperty, getEmptyAccessPattern, getEmptyValue, getKnownPropertyNames, getNullAccessPattern, getObjectIdReader, getPropertyCount, getValueInstantiator, getValueType, handledType, handleIgnoredProperty, handlePolymorphic, handleUnknownProperties, handleUnknownProperty, handleUnknownVanilla, hasProperty, hasViews, injectValues, isCachable, isCaseInsensitive, logicalType, properties, resolve, wrapAndThrow, wrapInstantiationProblemMethods inherited from class tools.jackson.databind.deser.std.StdDeserializer
_byteOverflow, _checkBooleanToStringCoercion, _checkCoercionFail, _checkDoubleSpecialValue, _checkFloatSpecialValue, _checkFloatToIntCoercion, _checkFloatToStringCoercion, _checkFromStringCoercion, _checkFromStringCoercion, _checkIntToFloatCoercion, _checkIntToStringCoercion, _checkTextualNull, _checkToStringCoercion, _coerceBooleanFromInt, _coercedTypeDesc, _coercedTypeDesc, _coerceIntegral, _deserializeFromEmptyString, _deserializeFromString, _deserializeWrappedValue, _findCoercionFromBlankString, _findCoercionFromEmptyArray, _findCoercionFromEmptyString, _findNullProvider, _hasTextualNull, _intOverflow, _isBlank, _isFalse, _isIntNumber, _isNaN, _isNegInf, _isPosInf, _isTrue, _neitherNull, _nonNullNumber, _parseBoolean, _parseBooleanPrimitive, _parseBytePrimitive, _parseDate, _parseDate, _parseDateFromArray, _parseDouble, _parseDoublePrimitive, _parseDoublePrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseInteger, _parseInteger, _parseIntPrimitive, _parseIntPrimitive, _parseLong, _parseLong, _parseLongPrimitive, _parseLongPrimitive, _parseShortPrimitive, _parseString, _reportFailedNullCoerce, _shortOverflow, _verifyEndArrayForSingle, _verifyNullForPrimitive, _verifyNullForPrimitiveCoercion, _wrapIOFailure, findContentNullProvider, findContentNullStyle, findConvertingContentDeserializer, findDeserializer, findFormatFeature, findFormatOverrides, findValueNullProvider, getValueType, handleMissingEndArrayForSingle, handleNestedArrayForSingle, isDefaultDeserializer, isDefaultKeyDeserializerMethods inherited from class tools.jackson.databind.ValueDeserializer
deserializeWithType, getAbsentValue, getDelegatee, getNullValue, replaceDelegatee
-
Field Details
-
_buildMethod
-
_targetType
Type that the builder will produce, target type; as opposed to `handledType()` which refers to Builder class. -
_propertyNameMatcher
-
_propertiesByIndex
-
-
Constructor Details
-
BuilderBasedDeserializer
public BuilderBasedDeserializer(BeanDeserializerBuilder builder, BeanDescription.Supplier beanDescRef, JavaType targetType, BeanPropertyMap properties, Map<String, SettableBeanProperty> backRefs, Set<String> ignorableProps, boolean ignoreAllUnknown, boolean hasViews) Constructor used byBeanDeserializerBuilder. -
BuilderBasedDeserializer
public BuilderBasedDeserializer(BeanDeserializerBuilder builder, BeanDescription.Supplier beanDescRef, JavaType targetType, BeanPropertyMap properties, Map<String, SettableBeanProperty> backRefs, Set<String> ignorableProps, boolean ignoreAllUnknown, Set<String> includableProps, boolean hasViews) - Since:
- 2.12
-
BuilderBasedDeserializer
Copy-constructor that can be used by sub-classes to allow copy-on-write styling copying of settings of an existing instance. -
BuilderBasedDeserializer
-
BuilderBasedDeserializer
protected BuilderBasedDeserializer(BuilderBasedDeserializer src, UnwrappedPropertyHandler unwrapHandler, PropertyBasedCreator pbCreator, BeanPropertyMap renamedProperties, boolean ignoreAllUnknown) -
BuilderBasedDeserializer
-
BuilderBasedDeserializer
-
BuilderBasedDeserializer
public BuilderBasedDeserializer(BuilderBasedDeserializer src, Set<String> ignorableProps, Set<String> includableProps) -
BuilderBasedDeserializer
-
-
Method Details
-
initNameMatcher
- Specified by:
initNameMatcherin classBeanDeserializerBase
-
unwrappingDeserializer
public ValueDeserializer<Object> unwrappingDeserializer(DeserializationContext ctxt, NameTransformer transformer) Description copied from class:ValueDeserializerMethod that will return deserializer instance that is able to handle "unwrapped" value instances If no unwrapped instance can be constructed, will simply return this object as-is.Default implementation just returns 'this' indicating that no unwrapped variant exists
- Specified by:
unwrappingDeserializerin classBeanDeserializerBase
-
withObjectIdReader
- Specified by:
withObjectIdReaderin classBeanDeserializerBase
-
withByNameInclusion
public BeanDeserializerBase withByNameInclusion(Set<String> ignorableProps, Set<String> includableProps) - Specified by:
withByNameInclusionin classBeanDeserializerBase
-
withIgnoreAllUnknown
- Specified by:
withIgnoreAllUnknownin classBeanDeserializerBase
-
withBeanProperties
Description copied from class:BeanDeserializerBaseMutant factory method that custom sub-classes must override; not left as abstract to prevent more drastic backwards compatibility problems.- Overrides:
withBeanPropertiesin classBeanDeserializerBase
-
asArrayDeserializer
Description copied from class:BeanDeserializerBaseFluent factory for creating a variant that can handle POJO output as a JSON Array. Implementations may ignore this request if no such input is possible.- Specified by:
asArrayDeserializerin classBeanDeserializerBase
-
supportsUpdate
Description copied from class:ValueDeserializerIntrospection method that may be called to see whether deserializer supports update of an existing value (aka "merging") or not. Return value should either beBoolean.FALSEif update is not supported at all (immutable values);Boolean.TRUEif update should usually work (regular POJOs, for example), ornullif this is either not known, or may sometimes work.Information gathered is typically used to either prevent merging update for property (either by skipping, if based on global defaults; or by exception during deserializer construction if explicit attempt made) if
Boolean.FALSEreturned, or inclusion ifBoolean.TRUEis specified. If "unknown" case (nullreturned) behavior is to exclude property if global defaults used; or to allow if explicit per-type or property merging is defined.Default implementation returns
nullto allow explicit per-type or per-property attempts.- Overrides:
supportsUpdatein classBeanDeserializerBase
-
finishBuild
- Throws:
JacksonException
-
deserialize
Main deserialization method for bean-based objects (POJOs).- Specified by:
deserializein classValueDeserializer<Object>- Parameters:
p- Parser used for reading JSON contentctxt- Context that can be used to access information about this deserialization activity.- Returns:
- Deserialized value
- Throws:
JacksonException
-
deserialize
public Object deserialize(JsonParser p, DeserializationContext ctxt, Object value) throws JacksonException Secondary deserialization method, called in cases where POJO instance is created as part of deserialization, potentially after collecting some or all of the properties to set.- Overrides:
deserializein classValueDeserializer<Object>- Throws:
JacksonException
-
deserializeFromObject
public Object deserializeFromObject(JsonParser p, DeserializationContext ctxt) throws JacksonException General version used when handling needs more advanced features.- Specified by:
deserializeFromObjectin classBeanDeserializerBase- Throws:
JacksonException
-
_deserializeUsingPropertyBased
protected Object _deserializeUsingPropertyBased(JsonParser p, DeserializationContext ctxt) throws JacksonException Method called to deserialize bean using "property-based creator": this means that a non-default constructor or factory method is called, and then possibly other setters. The trick is that values for creator method need to be buffered, first; and due to non-guaranteed ordering possibly some other properties as well.- Specified by:
_deserializeUsingPropertyBasedin classBeanDeserializerBase- Returns:
- Builder instance constructed
- Throws:
JacksonException
-
_deserialize
protected final Object _deserialize(JsonParser p, DeserializationContext ctxt, Object builder) throws JacksonException - Throws:
JacksonException
-
_deserializeFromArray
protected Object _deserializeFromArray(JsonParser p, DeserializationContext ctxt) throws JacksonException Description copied from class:StdDeserializerHelper method that allows easy support for array-related coercion features: checks for either empty array, or single-value array-wrapped value (if coercion enabled byCoercionConfigs(since 2.12), and either reports an exception (if no coercion allowed), or returns appropriate result value using coercion mechanism indicated.This method should NOT be called if Array representation is explicitly supported for type: it should only be called in case it is otherwise unrecognized.
NOTE: in case of unwrapped single element, will handle actual decoding by calling
StdDeserializer._deserializeWrappedValue(tools.jackson.core.JsonParser, tools.jackson.databind.DeserializationContext), which by default callsValueDeserializer.deserialize(JsonParser, DeserializationContext).- Overrides:
_deserializeFromArrayin classStdDeserializer<Object>- Throws:
JacksonException
-
deserializeWithView
protected final Object deserializeWithView(JsonParser p, DeserializationContext ctxt, Object bean, Class<?> activeView) throws JacksonException - Throws:
JacksonException
-
deserializeWithUnwrapped
protected Object deserializeWithUnwrapped(JsonParser p, DeserializationContext ctxt) throws JacksonException Method called when there are declared "unwrapped" properties which need special handling- Throws:
JacksonException
-
deserializeWithUnwrapped
protected Object deserializeWithUnwrapped(JsonParser p, DeserializationContext ctxt, Object builder, TokenBuffer tokens) throws JacksonException - Throws:
JacksonException
-
deserializeUsingPropertyBasedWithUnwrapped
protected Object deserializeUsingPropertyBasedWithUnwrapped(JsonParser p, DeserializationContext ctxt) throws JacksonException - Throws:
JacksonException
-
deserializeWithExternalTypeId
protected Object deserializeWithExternalTypeId(JsonParser p, DeserializationContext ctxt) throws JacksonException - Throws:
JacksonException
-
deserializeWithExternalTypeId
protected Object deserializeWithExternalTypeId(JsonParser p, DeserializationContext ctxt, Object bean) throws JacksonException - Throws:
JacksonException
-
deserializeUsingPropertyBasedWithExternalTypeId
protected Object deserializeUsingPropertyBasedWithExternalTypeId(JsonParser p, DeserializationContext ctxt) throws JacksonException - Throws:
JacksonException
-
_handleUnexpectedWithin
protected Object _handleUnexpectedWithin(JsonParser p, DeserializationContext ctxt, Object beanOrBuilder) throws JacksonException Method called if an unexpected token (other thenFIELD_NAME) is found after POJO has been instantiated and partially bound.- Throws:
JacksonException- Since:
- 3.0
-