kz.greetgo.msoffice.xlsx.parse.RowHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.msoffice Show documentation
Show all versions of greetgo.msoffice Show documentation
greetgo library to generate or parse MS Office files
package kz.greetgo.msoffice.xlsx.parse;
import java.util.List;
/**
* Обрабочик сканирования строк
*
* @author pompei
*/
public interface RowHandler {
/**
* Вызывается при появлении очередной строки
*
* @param row список ячеек очередной строки
* @param rowIndex индекс очередной строки: 0 - первая строка, 1 - вторая, и т.д.
* @throws Exception чтобы не ставить try/catch блоки
*/
void handle(List row, int rowIndex) throws Exception;
}
|