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

com.fasterxml.jackson.databind.util.Converter Maven / Gradle / Ivy

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

/**
 * Helper interface for things that convert Objects of
 * one type to another.
 *
 * @param 
 * @param 
 * 
 * @seealso {@link com.fasterxml.jackson.databind.ser.std.StdDelegatingSerializer}
 * 
 * @since 2.1
 */
public interface Converter
{
    /**
     * Main conversion methods
     */
    public OUT convert(IN value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy