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

org.sklsft.commons.mapper.interfaces.Mapper Maven / Gradle / Ivy

There is a newer version: 5.0.0-M1
Show newest version
package org.sklsft.commons.mapper.interfaces;

/**
 * A simple interface to define mapping standard functions
 * @author Nicolas Thibault
 *
 * @param 
 * @param 
 */
public interface Mapper {
	
	T mapFrom (T obj1, U obj2);
	
	T mapFrom (U obj2);
	
	U mapTo (T obj1, U obj2);
	
	U mapTo (T obj1);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy