com.fitbur.fasterxml.jackson.databind.util.Converter Maven / Gradle / Ivy
package com.fitbur.fasterxml.jackson.databind.util;
/**
* Helper interface for things that convert Objects of
* one type to another.
*
* @param
* @param
*
* @seealso {@link com.fitbur.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