com.fasterxml.jackson.databind.deser.std
Class JsonNodeDeserializer
java.lang.Object
com.fasterxml.jackson.databind.JsonDeserializer<T>
com.fasterxml.jackson.databind.deser.std.StdDeserializer<N>
com.fasterxml.jackson.databind.deser.std.JsonNodeDeserializer
public class JsonNodeDeserializer
- extends StdDeserializer<N>
Deserializer that can build instances of JsonNode
from any
JSON content, using appropriate JsonNode
type.
Method Summary |
protected void |
_handleDuplicateField(String fieldName,
ObjectNode objectNode,
JsonNode oldValue,
JsonNode newValue)
Method called when there is a duplicate value for a field. |
protected void |
_reportProblem(com.fasterxml.jackson.core.JsonParser jp,
String msg)
|
JsonNode |
deserialize(com.fasterxml.jackson.core.JsonParser jp,
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). |
protected JsonNode |
deserializeAny(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory)
|
protected ArrayNode |
deserializeArray(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory)
|
protected ObjectNode |
deserializeObject(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory)
|
Object |
deserializeWithType(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
TypeDeserializer typeDeserializer)
Base implementation that does not assume specific type
inclusion mechanism. |
static JsonDeserializer<? extends JsonNode> |
getDeserializer(Class<?> nodeClass)
Factory method for accessing deserializer for specific node type |
Methods inherited from class com.fasterxml.jackson.databind.deser.std.StdDeserializer |
_parseBoolean, _parseBooleanFromNumber, _parseBooleanPrimitive, _parseByte, _parseDate, _parseDouble, _parseDoublePrimitive, _parseFloat, _parseFloatPrimitive, _parseInteger, _parseIntPrimitive, _parseLong, _parseLongPrimitive, _parseShort, _parseShortPrimitive, findDeserializer, getValueClass, getValueType, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializer, parseDouble |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
JsonNodeDeserializer
protected JsonNodeDeserializer()
getDeserializer
public static JsonDeserializer<? extends JsonNode> getDeserializer(Class<?> nodeClass)
- Factory method for accessing deserializer for specific node type
deserialize
public JsonNode deserialize(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
- Implementation that will produce types of any JSON nodes; not just one
deserializer is registered to handle (in case of more specialized handler).
Overridden by typed sub-classes for more thorough checking
- Specified by:
deserialize
in class JsonDeserializer<JsonNode>
- Parameters:
jp
- Parsed used for reading JSON contentctxt
- Context that can be used to access information about
this deserialization activity.
- Returns:
- Deserializer value
- Throws:
IOException
com.fasterxml.jackson.core.JsonProcessingException
deserializeWithType
public Object deserializeWithType(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
TypeDeserializer typeDeserializer)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
- Description copied from class:
StdDeserializer
- Base implementation that does not assume specific type
inclusion mechanism. Sub-classes are expected to override
this method if they are to handle type information.
- Overrides:
deserializeWithType
in class StdDeserializer<N extends JsonNode>
typeDeserializer
- Deserializer to use for handling type information
- Throws:
IOException
com.fasterxml.jackson.core.JsonProcessingException
_reportProblem
protected void _reportProblem(com.fasterxml.jackson.core.JsonParser jp,
String msg)
throws JsonMappingException
- Throws:
JsonMappingException
_handleDuplicateField
protected void _handleDuplicateField(String fieldName,
ObjectNode objectNode,
JsonNode oldValue,
JsonNode newValue)
throws com.fasterxml.jackson.core.JsonProcessingException
- Method called when there is a duplicate value for a field.
By default we don't care, and the last value is used.
Can be overridden to provide alternate handling, such as throwing
an exception, or choosing different strategy for combining values
or choosing which one to keep.
- Parameters:
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 node
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
deserializeObject
protected final ObjectNode deserializeObject(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
- Throws:
IOException
com.fasterxml.jackson.core.JsonProcessingException
deserializeArray
protected final ArrayNode deserializeArray(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
- Throws:
IOException
com.fasterxml.jackson.core.JsonProcessingException
deserializeAny
protected final JsonNode deserializeAny(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
JsonNodeFactory nodeFactory)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
- Throws:
IOException
com.fasterxml.jackson.core.JsonProcessingException
Copyright © 2012 fasterxml.com. All Rights Reserved.