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

com.github.houbb.iexcel.hutool.support.sax.SaxReadConvert 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;

/**
 * sax 读转换
 * @param  泛型
 */
public interface SaxReadConvert {

    /**
     * 转换当前对象
     * @param tClass 类
     * @param rowIndex 行信息
     * @param rowList 行信息
     * @return 结果
     */
    T convert(Class tClass, int rowIndex, List rowList);

}