com.fasterxml.jackson.databind.jsonFormatVisitors.JsonBooleanFormatVisitor.java Source code

Java tutorial

Introduction

Here is the source code for com.fasterxml.jackson.databind.jsonFormatVisitors.JsonBooleanFormatVisitor.java

Source

package com.fasterxml.jackson.databind.jsonFormatVisitors;

public interface JsonBooleanFormatVisitor extends JsonValueFormatVisitor {
    /**
     * Default "empty" implementation, useful as the base to start on;
     * especially as it is guaranteed to implement all the method
     * of the interface, even if new methods are getting added.
     */
    public static class Base extends JsonValueFormatVisitor.Base implements JsonBooleanFormatVisitor {
    }
}