All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.databind.jsonFormatVisitors.JsonValueFormatVisitor Maven / Gradle / Ivy

Go to download

General data-binding functionality for Jackson: works on core streaming API

There is a newer version: 2.17.0
Show newest version
package com.fasterxml.jackson.databind.jsonFormatVisitors;

import java.util.Set;

public interface JsonValueFormatVisitor {
    /**
     * Method called to indicate configured format for value type being visited.
     */
    void format(JsonValueFormat format);

    /**
     * Method called to indicate enumerated (String) values type being visited
     * can take as values.
     */
    void enumTypes(Set enums);

    /**
     * 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 implements JsonValueFormatVisitor {
        @Override
        public void format(JsonValueFormat format) { }
        @Override
        public void enumTypes(Set enums) { }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy