Example usage for com.fasterxml.jackson.databind.jsontype TypeDeserializer deserializeTypedFromObject

List of usage examples for com.fasterxml.jackson.databind.jsontype TypeDeserializer deserializeTypedFromObject

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.jsontype TypeDeserializer deserializeTypedFromObject.

Prototype

public abstract Object deserializeTypedFromObject(JsonParser paramJsonParser,
            DeserializationContext paramDeserializationContext);

Source Link

Usage

From source file:net.nullschool.grains.jackson.datatype.AbstractBasicConstMapDeserializer.java

@Override
public Object deserializeWithType(JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
        throws IOException {

    return typeDeserializer.deserializeTypedFromObject(jp, ctxt);
}