cn.featherfly.common.io.file.FileConvention Maven / Gradle / Ivy
The newest version!
package cn.featherfly.common.io.file;
import java.io.File;
/**
*
* 文件转换器.
*
*
*
* @author zhongj
*/
public interface FileConvention {
/**
*
* 将文件转换为指定对象.
*
* @param 对象
* @param file 文件
* @return 对象
*/
E convert(File file);
}