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

io.github.linpeilie.ConverterFactory Maven / Gradle / Ivy

There is a newer version: 1.4.4
Show newest version
package io.github.linpeilie;

public interface ConverterFactory {

     BaseMapper getMapper(Class sourceType, Class targetType);

     BaseCycleAvoidingMapper getCycleAvoidingMapper(Class sourceType, Class targetType);

     BaseMapMapper getMapMapper(Class sourceType);

}