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

com.github.houbb.iexcel.hutool.support.sax.SaxReadHandler Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.github.houbb.iexcel.hutool.support.sax;

import java.util.List;

/**
 * 处理接口
 * @param  泛型
 * @since 1.2.0
 */
public interface SaxReadHandler {

    /**
     * 处理
     * @param rowIndex 行
     * @param rowList 当前行内容
     * @param instance 实体
     */
    void handle(int rowIndex, List rowList, T instance);

}