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

com.github.stupdit1t.excel.core.ExcelHelper Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package com.github.stupdit1t.excel.core;

import com.github.stupdit1t.excel.common.PoiWorkbookType;
import com.github.stupdit1t.excel.core.export.OpsExport;
import com.github.stupdit1t.excel.core.parse.OpsParse;
import com.github.stupdit1t.excel.core.replace.OpsReplace;

/**
 * 快速构建导出导入类
 */
public final class ExcelHelper {

    private ExcelHelper() {

    }

    /**
     * 导出入口
     *
     * @return OpsExport
     */
    public static OpsExport opsExport(PoiWorkbookType workbookType) {
        return new OpsExport(workbookType);
    }

    /**
     * 导入入口
     *
     * @return OpsExport
     */
    public static  OpsParse opsParse(Class rowClass) {
        return new OpsParse<>(rowClass);
    }

    /**
     * 读模板替换变量入口
     *
     * @return OpsReplace
     */
    public static OpsReplace opsReplace() {
        return new OpsReplace();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy