Package io.keikai.range
Interface SExporter
-
- All Known Implementing Classes:
AbstractExcelExporter
,AbstractExporter
,ExcelXlsExporter
,ExcelXlsxExporter
,HtmlExporter
,PdfExporter
public interface SExporter
An exporter can export a book model to a output stream or file.- Since:
- 3.5.0
- Author:
- dennis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
export(SBook book, File file)
Export a bookvoid
export(SBook book, OutputStream fos)
Export a book
-
-
-
Method Detail
-
export
void export(SBook book, OutputStream fos) throws IOException
Export a book- Parameters:
book
- the book to exportfos
- the output stream to store data- Throws:
IOException
-
export
void export(SBook book, File file) throws IOException
Export a book- Parameters:
book
- the book to exportfile
- the output file to store data- Throws:
IOException
-
-