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

com.github.deansquirrel.tools.poi.IDataMapper Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.github.deansquirrel.tools.poi;

import java.util.List;

public interface IDataMapper {

    List getTitleList();
    List getRowData(T data);

}