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

com.github.stupdit1t.excel.callback.CellCallback Maven / Gradle / Ivy

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


/**
 * 导出回调函数
 *
 * @author 625
 */

@FunctionalInterface
public interface CellCallback {

    /**
     * 导出回调
     *
     * @param value 当前单元格值
     * @param row   行号
     * @param col   列号
     * @return 返回重置后的单元格值
     */
    Object callback(int row, int col, Object value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy