Example usage for com.fasterxml.jackson.databind DatabindContext getTypeFactory

List of usage examples for com.fasterxml.jackson.databind DatabindContext getTypeFactory

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind DatabindContext getTypeFactory.

Prototype

public abstract TypeFactory getTypeFactory();

Source Link

Usage

From source file:com.addthis.codec.jackson.CodecTypeIdResolver.java

@Override
public JavaType typeFromId(DatabindContext context, String id) {
    return _typeFromId(id, context.getTypeFactory());
}