public class JsonNodeDeserializer extends StdDeserializer<T>
JsonNode
from any
JSON content, using appropriate JsonNode
type.
Rewritten in Jackson 2.13 to avoid recursion and allow handling of very deeply nested structures.
JsonDeserializer.None
Modifier and Type | Field and Description |
---|---|
protected boolean |
_mergeArrays |
protected boolean |
_mergeObjects |
protected Boolean |
_supportsUpdates |
_valueClass, _valueType, F_MASK_ACCEPT_ARRAYS, F_MASK_INT_COERCIONS
Modifier | Constructor and Description |
---|---|
protected |
JsonNodeDeserializer() |
protected |
JsonNodeDeserializer(JsonNodeDeserializer base,
boolean mergeArrays,
boolean mergeObjects) |
Modifier and Type | Method and Description |
---|---|
protected JsonDeserializer<?> |
_createWithMerge(boolean mergeArrays,
boolean mergeObjects) |
protected JsonNode |
_deserializeAnyScalar(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt) |
protected ContainerNode<?> |
_deserializeContainerNoRecursion(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory,
com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer.ContainerStack stack,
ContainerNode<?> root) |
protected ObjectNode |
_deserializeObjectAtName(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory,
com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer.ContainerStack stack)
Alternate deserialization method used when parser already points to first
FIELD_NAME and not START_OBJECT.
|
protected JsonNode |
_deserializeRareScalar(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt) |
protected JsonNode |
_fromEmbedded(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt) |
protected JsonNode |
_fromFloat(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory) |
protected JsonNode |
_fromInt(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory) |
protected JsonNode |
_fromInt(com.fasterxml.jackson.core.JsonParser p,
int coercionFeatures,
JsonNodeFactory nodeFactory) |
protected void |
_handleDuplicateField(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory,
String fieldName,
ObjectNode objectNode,
JsonNode oldValue,
JsonNode newValue)
Method called when there is a duplicate value for a field.
|
JsonDeserializer<?> |
createContextual(DeserializationContext ctxt,
BeanProperty property)
Method called to see if a different (or differently configured) deserializer
is needed to deserialize values of specified property.
|
JsonNode |
deserialize(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt)
Implementation that will produce types of any JSON nodes; not just one
deserializer is registered to handle (in case of more specialized handler).
|
Object |
deserializeWithType(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt,
TypeDeserializer typeDeserializer)
Base implementation that does not assume specific type
inclusion mechanism.
|
Object |
getAbsentValue(DeserializationContext ctxt)
Overridden variant to ensure that absent values are NOT coerced into
NullNode s, unlike incoming null values. |
static JsonDeserializer<? extends JsonNode> |
getDeserializer(Class<?> nodeClass)
Factory method for accessing deserializer for specific node type
|
JsonNode |
getNullValue(DeserializationContext ctxt)
Method that can be called to determine value to be used for
representing null values (values deserialized when JSON token
is
JsonToken.VALUE_NULL ). |
boolean |
isCachable()
Method called to see if deserializer instance is cachable and
usable for other properties of same type (type for which instance
was created).
|
LogicalType |
logicalType()
Method for accessing logical type of values this deserializer produces.
|
Boolean |
supportsUpdate(DeserializationConfig config)
Introspection method that may be called to see whether deserializer supports
update of an existing value (aka "merging") or not.
|
protected JsonNode |
updateObject(com.fasterxml.jackson.core.JsonParser p,
DeserializationContext ctxt,
ObjectNode node,
com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer.ContainerStack stack)
Alternate deserialization method that is to update existing
ObjectNode
if possible. |
_byteOverflow, _checkBooleanToStringCoercion, _checkCoercionFail, _checkDoubleSpecialValue, _checkFloatSpecialValue, _checkFloatToIntCoercion, _checkFloatToStringCoercion, _checkFromStringCoercion, _checkFromStringCoercion, _checkIntToFloatCoercion, _checkIntToStringCoercion, _checkTextualNull, _checkToStringCoercion, _coerceBooleanFromInt, _coercedTypeDesc, _coerceEmptyString, _coerceIntegral, _coerceNullToken, _coerceTextualNull, _deserializeFromArray, _deserializeFromEmpty, _deserializeFromEmptyString, _deserializeFromString, _deserializeWrappedValue, _failDoubleToIntCoercion, _findCoercionFromBlankString, _findCoercionFromEmptyArray, _findCoercionFromEmptyString, _findNullProvider, _hasTextualNull, _intOverflow, _isBlank, _isEmptyOrTextualNull, _isFalse, _isIntNumber, _isNaN, _isNegInf, _isPosInf, _isTrue, _neitherNull, _nonNullNumber, _parseBoolean, _parseBooleanFromInt, _parseBooleanPrimitive, _parseBooleanPrimitive, _parseBytePrimitive, _parseDate, _parseDate, _parseDateFromArray, _parseDouble, _parseDouble, _parseDoublePrimitive, _parseDoublePrimitive, _parseDoublePrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseInteger, _parseInteger, _parseIntPrimitive, _parseIntPrimitive, _parseLong, _parseLong, _parseLongPrimitive, _parseLongPrimitive, _parseShortPrimitive, _parseString, _parseString, _reportFailedNullCoerce, _shortOverflow, _verifyEndArrayForSingle, _verifyNullForPrimitive, _verifyNullForPrimitiveCoercion, _verifyNullForScalarCoercion, _verifyNumberForScalarCoercion, _verifyStringForScalarCoercion, findContentNullProvider, findContentNullStyle, findConvertingContentDeserializer, findDeserializer, findFormatFeature, findFormatOverrides, findValueNullProvider, getValueClass, getValueInstantiator, getValueType, getValueType, handledType, handleMissingEndArrayForSingle, handleNestedArrayForSingle, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializer
deserialize, deserializeWithType, findBackReference, getDelegatee, getEmptyAccessPattern, getEmptyValue, getEmptyValue, getKnownPropertyNames, getNullAccessPattern, getNullValue, getObjectIdReader, replaceDelegatee, unwrappingDeserializer
protected final Boolean _supportsUpdates
protected final boolean _mergeArrays
protected final boolean _mergeObjects
protected JsonNodeDeserializer()
protected JsonNodeDeserializer(JsonNodeDeserializer base, boolean mergeArrays, boolean mergeObjects)
protected JsonDeserializer<?> _createWithMerge(boolean mergeArrays, boolean mergeObjects)
public static JsonDeserializer<? extends JsonNode> getDeserializer(Class<?> nodeClass)
public JsonNode getNullValue(DeserializationContext ctxt)
JsonDeserializer
JsonToken.VALUE_NULL
). Usually this is simply
Java null, but for some types (especially primitives) it may be
necessary to use non-null values.
This method may be called once, or multiple times, depending on what
JsonDeserializer.getNullAccessPattern()
returns.
Default implementation simply returns null.
getNullValue
in interface NullValueProvider
getNullValue
in class JsonDeserializer<JsonNode>
public Object getAbsentValue(DeserializationContext ctxt)
NullNode
s, unlike incoming null
values.getAbsentValue
in interface NullValueProvider
getAbsentValue
in class JsonDeserializer<JsonNode>
public JsonNode deserialize(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) throws IOException
deserialize
in class JsonDeserializer<JsonNode>
p
- Parsed used for reading JSON contentctxt
- Context that can be used to access information about
this deserialization activity.IOException
public Boolean supportsUpdate(DeserializationConfig config)
JsonDeserializer
Boolean.FALSE
if update is not supported at all (immutable values);
Boolean.TRUE
if update should usually work (regular POJOs, for example),
or null
if 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.FALSE
returned, or inclusion if Boolean.TRUE
is specified. If "unknown" case
(null
returned) behavior is to exclude property if global defaults
used; or to allow if explicit per-type or property merging is defined.
Default implementation returns null
to allow explicit per-type
or per-property attempts.
public Object deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer) throws IOException
StdDeserializer
deserializeWithType
in class StdDeserializer<T extends JsonNode>
typeDeserializer
- Deserializer to use for handling type informationIOException
public LogicalType logicalType()
JsonDeserializer
logicalType
in class JsonDeserializer<T extends JsonNode>
null
if notpublic boolean isCachable()
JsonDeserializer
Note that cached instances are still resolved on per-property basis,
if instance implements ResolvableDeserializer
:
cached instance is just as the base. This means that in most cases it is safe to
cache instances; however, it only makes sense to cache instances
if instantiation is expensive, or if instances are heavy-weight.
Default implementation returns false, to indicate that no caching is done.
isCachable
in class JsonDeserializer<T extends JsonNode>
public JsonDeserializer<?> createContextual(DeserializationContext ctxt, BeanProperty property) throws JsonMappingException
ContextualDeserializer
createContextual
in interface ContextualDeserializer
ctxt
- Deserialization context to access configuration, additional
deserializers that may be needed by this deserializerproperty
- Method, field or constructor parameter that represents the property
(and is used to assign deserialized value).
Should be available; but there may be cases where caller cannot provide it and
null is passed instead (in which case impls usually pass 'this' deserializer as is)JsonMappingException
protected void _handleDuplicateField(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, String fieldName, ObjectNode objectNode, JsonNode oldValue, JsonNode newValue) throws IOException
fieldName
- Name of the field for which duplicate value was foundobjectNode
- Object node that contains valuesoldValue
- Value that existed for the object node before newValue
was addednewValue
- Newly added value just added to the object nodeIOException
protected final ObjectNode _deserializeObjectAtName(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer.ContainerStack stack) throws IOException
IOException
protected final JsonNode updateObject(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, ObjectNode node, com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer.ContainerStack stack) throws IOException
ObjectNode
if possible.IOException
protected final ContainerNode<?> _deserializeContainerNoRecursion(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer.ContainerStack stack, ContainerNode<?> root) throws IOException
IOException
protected final JsonNode _deserializeAnyScalar(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) throws IOException
IOException
protected final JsonNode _deserializeRareScalar(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) throws IOException
IOException
protected final JsonNode _fromInt(com.fasterxml.jackson.core.JsonParser p, int coercionFeatures, JsonNodeFactory nodeFactory) throws IOException
IOException
protected final JsonNode _fromInt(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory) throws IOException
IOException
protected final JsonNode _fromFloat(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory) throws IOException
IOException
protected final JsonNode _fromEmbedded(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) throws IOException
IOException
Copyright © 2008–2022 FasterXML. All rights reserved.