1 package com.fasterxml.jackson.databind.jsonFormatVisitors;
2 
3 public interface JsonAnyFormatVisitor
4 {
5     /**
6      * Default "empty" implementation, useful as the base to start on;
7      * especially as it is guaranteed to implement all the method
8      * of the interface, even if new methods are getting added.
9      */
10     public static class Base implements JsonAnyFormatVisitor { }
11 }
12