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

net.projectmonkey.object.mapper.construction.converter.CacheableConverter Maven / Gradle / Ivy

Go to download

Object mapping implementation written as an alternative to modelmapper which is able to support inheritance, handles flattening / expanding in a precise way, and is extensible / configurable

The newest version!
package net.projectmonkey.object.mapper.construction.converter;

/**
 * allows converters to be cached against source and destination types where possible.
 *
 * @author Andy Moody
 */
public interface CacheableConverter extends Converter
{

	public Class[] getApplicableSourceTypes();

	public Class[] getApplicableDestinationTypes();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy