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

com.itxiaoer.commons.poi.RowsConsumer Maven / Gradle / Ivy

There is a newer version: 2.3.4
Show newest version
package com.itxiaoer.commons.poi;

import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;

/**
 * @author : liuyk
 */
@FunctionalInterface
public interface RowsConsumer {

    /**
     * accept
     *
     * @param sheetIndex sheet index
     * @param sheet      sheet
     * @param rowIndex   rowIndex
     * @param row        row
     */
    void accept(int sheetIndex, Sheet sheet, int rowIndex, Row row);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy