
com.ecfront.easybi.excelconverter.inner.tojava.JavaConvertStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ez-excelconverter Show documentation
Show all versions of ez-excelconverter Show documentation
Simple Java and Excel conversion tools.
package com.ecfront.easybi.excelconverter.inner.tojava;
import org.apache.poi.ss.usermodel.Sheet;
/**
* 转换策略
*/
public interface JavaConvertStrategy {
/**
* 转换
*
* @param beanClass 目标Bean
* @param sheet 工作表
* @param Bean Class
* @return 转换后的对象
*/
E convert(Class beanClass, Sheet sheet) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy