com.poiji.save.WorkbookSaver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poiji2 Show documentation
Show all versions of poiji2 Show documentation
Perfect annotation based library to read and write excel files
package com.poiji.save;
import java.util.Collection;
import java.util.stream.Stream;
import org.apache.poi.ss.usermodel.Workbook;
public interface WorkbookSaver {
void save(final Collection data, final Workbook workbook);
void save(final Stream data, final Workbook workbook);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy