com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
package com.fasterxml.jackson.databind.jsonFormatVisitors;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.JsonMappingException;
/**
* Interface {@link com.fasterxml.jackson.databind.JsonSerializer} implements
* to allow for visiting type hierarchy.
*/
public interface JsonFormatVisitable
{
/**
* Get the representation of the schema to which this serializer will conform.
*
* @param typeHint Type of element (entity like property) being visited
*/
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint)
throws JsonMappingException;
}