
online.sanen.excel.ExcelWrite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel Show documentation
Show all versions of excel Show documentation
Simple excel reading and writing tools
The newest version!
package online.sanen.excel;
import java.io.File;
import java.util.function.Consumer;
import online.sanen.excel.pojo.ColsHolder;
import online.sanen.excel.pojo.HeadStyle;
import online.sanen.excel.pojo.Result;
import online.sanen.excel.pojo.RolsHolder;
import online.sanen.excel.pojo.TitleStyle;
/**
*
* @author lazyToShow
* Date: Mar 23, 2020
* Time: 5:40:08 PM
*/
public interface ExcelWrite {
ExcelWrite title(String string);
ExcelWrite defaultRowHeight(short height);
ExcelWrite headStyle(Consumer headStyle);
ExcelWrite colsSyle(Consumer colsStyle);
ExcelWrite rowsSyle(Consumer rowsStyle);
ExcelWrite alias(String... alias);
ExcelWrite titleStyle(Consumer rowsStyle);
ExcelWrite setFields(String... fields);
ExcelWrite setExceptFields(String... exceptfields);
Result forXlsx();
Result forXls();
void forFile(File dest);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy