cn.chenhuanming.octopus.writer.SheetWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of octopus Show documentation
Show all versions of octopus Show documentation
A simple excel import and export tool
The newest version!
package cn.chenhuanming.octopus.writer;
import cn.chenhuanming.octopus.model.CellPosition;
import org.apache.poi.ss.usermodel.Sheet;
import java.util.Collection;
/**
* writes data into a sheet
* Created by chenhuanming on 2017-07-01.
*
* @author chenhuanming
*/
public interface SheetWriter {
CellPosition write(Sheet sheet, Collection data);
}