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

net.sf.andromedaioc.bean.converter.Converter Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.bean.converter;

/**
 * Converter interface
 *
 * @param  from type
 * @param  to type
 *
 * @author Alexey Mitrov
 */
public interface Converter {

    /**
     * Perform conversion of input of type  to type 
     * @param input
     * @return converted input
     */
    TO convert(FROM input);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy