Top Description Fields Constructors Methods
com.fasterxml.jackson.dataformat.avro.deser

public Class AvroUntypedDeserializer

extends UntypedObjectDeserializer
implements ResolvableDeserializer
Class Inheritance
All Implemented Interfaces
com.fasterxml.jackson.databind.deser.ResolvableDeserializer
Imports
java.io.IOException, java.util.LinkedHashMap, com.fasterxml.jackson.core.JsonParser, .JsonToken, com.fasterxml.jackson.databind.DeserializationContext, .JavaType, .JsonMappingException, .KeyDeserializer, com.fasterxml.jackson.databind.deser.ResolvableDeserializer, com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer, com.fasterxml.jackson.databind.jsontype.TypeDeserializer, .TypeIdResolver

Deserializer for handling when we have no target type, just schema type. Normally, the UntypedObjectDeserializer doesn't look for native type information when handling scalar values, but Avro sometimes includes type information in the schema for scalar values; This subclass checks for the presence of valid type information and calls out to the type deserializer even for scalar values. The same goes for map keys.
Since
2.9

Field Summary

Modifier and TypeField and Description
protected TypeDeserializer
protected JavaType
private static final long
Inherited from com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer:
_listDeserializer_listType_mapDeserializer_mapType_nonMerging_numberDeserializer_stringDeserializerNO_OBJECTS

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public Object
deserialize(JsonParser
Parser used for reading JSON content
p
,
DeserializationContext
Context that can be used to access information about this deserialization activity.
ctxt
)

Overrides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.deserialize.

Method that can be called to ask implementation to deserialize JSON content into the value type this serializer handles.

public Object
deserializeWithType(JsonParser p, DeserializationContext ctxt, TypeDeserializer
Deserializer to use for handling type information
typeDeserializer
)

Overrides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.deserializeWithType.

Base implementation that does not assume specific type inclusion mechanism.

protected Object
public void
resolve(DeserializationContext
Context to use for accessing configuration, resolving secondary deserializers
ctxt
)

Overrides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.resolve.

Implements com.fasterxml.jackson.databind.deser.ResolvableDeserializer.resolve.

Method called after deserializer instance has been constructed (and registered as necessary by provider objects), but before it has returned it to the caller.

Inherited from com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer:
_clearIfStdImpl_findCustomDeser_mapObjectWithDupscreateContextualdeserializeisCachablelogicalTypemapArraymapArraymapArrayToArraymapObjectsupportsUpdate

Field Detail

_typeDeserializerback to summary
protected TypeDeserializer _typeDeserializer
_typeObjectback to summary
protected JavaType _typeObject
serialVersionUIDback to summary
private static final long serialVersionUID

Hides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.serialVersionUID.

Constructor Detail

AvroUntypedDeserializerback to summary
public AvroUntypedDeserializer()

Method Detail

deserializeback to summary
public Object deserialize(JsonParser p, DeserializationContext ctxt) throws IOException

Overrides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.deserialize.

Doc from com.fasterxml.jackson.databind.JsonDeserializer.deserialize.

Method that can be called to ask implementation to deserialize JSON content into the value type this serializer handles. Returned instance is to be constructed by method itself.

Pre-condition for this method is that the parser points to the first event that is part of value to deserializer (and which is never JSON 'null' literal, more on this below): for simple types it may be the only value; and for structured types the Object start marker or a FIELD_NAME.

The two possible input conditions for structured types result from polymorphism via fields. In the ordinary case, Jackson calls this method when it has encountered an OBJECT_START, and the method implementation must advance to the next token to see the first field name. If the application configures polymorphism via a field, then the object looks like the following.

      {
          "@class": "class name",
          ...
      }
  
Jackson consumes the two tokens (the @class field name and its value) in order to learn the class and select the deserializer. Thus, the stream is pointing to the FIELD_NAME for the first field after the @class. Thus, if you want your method to work correctly both with and without polymorphism, you must begin your method with:
       if (p.currentToken() == JsonToken.START_OBJECT) {
         p.nextToken();
       }
  
This results in the stream pointing to the field name, so that the two conditions align.

Post-condition is that the parser will point to the last event that is part of deserialized value (or in case deserialization fails, event that was not recognized or usable, which may be the same event as the one it pointed to upon call).

Handling null values (JsonToken.VALUE_NULL)
: Note that this method is never called for the JSON null literal to avoid every deserializer from having to handle null values. Instead, the JsonDeserializer#getNullValue(DeserializationContext) method is called to produce a null value. To influence null handling, custom deserializers should override JsonDeserializer#getNullValue(DeserializationContext) and usually also JsonDeserializer#getNullAccessPattern().

Parameters
p:JsonParser

Parser used for reading JSON content

ctxt:DeserializationContext

Context that can be used to access information about this deserialization activity.

Returns:Object

Deserialized value

Annotations
@Override
deserializeWithTypeback to summary
public Object deserializeWithType(JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer) throws IOException

Overrides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.deserializeWithType.

Doc from com.fasterxml.jackson.databind.deser.std.StdDeserializer.deserializeWithType.

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.

Parameters
typeDeserializer:TypeDeserializer

Doc from com.fasterxml.jackson.databind.JsonDeserializer.deserializeWithType.

Deserializer to use for handling type information

Annotations
@Override
mapObjectback to summary
protected Object mapObject(JsonParser p, DeserializationContext ctxt) throws IOException

Overrides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.mapObject.

Method called to map a JSON Object into a Java value.

Annotations
@Override
resolveback to summary
public void resolve(DeserializationContext ctxt) throws JsonMappingException

Overrides com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.resolve.

Implements com.fasterxml.jackson.databind.deser.ResolvableDeserializer.resolve.

Doc from com.fasterxml.jackson.databind.deser.ResolvableDeserializer.resolve.

Method called after deserializer instance has been constructed (and registered as necessary by provider objects), but before it has returned it to the caller. Called object can then resolve its dependencies to other types, including self-references (direct or indirect).

Parameters
ctxt:DeserializationContext

Context to use for accessing configuration, resolving secondary deserializers

Annotations
@Override