net.sf.andromedaioc.bean.converter.Converter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
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);
}