1 package com.fasterxml.jackson.databind.jsonFormatVisitors;
2 
3 public interface JsonBooleanFormatVisitor extends JsonValueFormatVisitor
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 extends JsonValueFormatVisitor.Base
11         implements JsonBooleanFormatVisitor { }
12 }
13