Package io.keikai.api
Interface Exporter
-
- All Known Implementing Classes:
ExporterImpl
public interface Exporter
Exporter for a book or a sheet.- Since:
- 3.0.0
- Author:
- dennis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
export(Book book, File file)
Export bookvoid
export(Book book, OutputStream fos)
Export book
-
-
-
Method Detail
-
export
void export(Book book, OutputStream fos) throws IOException
Export book- Parameters:
book
- the book to exportfos
- the output stream to store data- Throws:
IOException
-
export
void export(Book book, File file) throws IOException
Export book- Parameters:
book
- the book to exportfile
- the output file to store data- Throws:
IOException
-
-