
net.projectmonkey.object.mapper.construction.converter.CacheableConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-mapper Show documentation
Show all versions of object-mapper Show documentation
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 extends SourceType>[] getApplicableSourceTypes();
public Class extends DestinationType>[] getApplicableDestinationTypes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy