Example usage for com.fasterxml.jackson.databind.cfg ContextAttributes getEmpty

List of usage examples for com.fasterxml.jackson.databind.cfg ContextAttributes getEmpty

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.cfg ContextAttributes getEmpty.

Prototype

public static ContextAttributes getEmpty() 

Source Link

Usage

From source file:org.emfjson.jackson.databind.EMFContext.java

public static ContextAttributes from(Map<?, ?> options) {
    return ContextAttributes.getEmpty()
            .withSharedAttributes(options == null ? new HashMap<>() : new HashMap<>(options));
}