Package com.github.javaxcel.out
Interface ExcelWriter<T>
- All Known Implementing Classes:
AbstractExcelWriter
,MapWriter
,ModelWriter
public interface ExcelWriter<T>
-
Method Summary
Modifier and Type Method Description void
write(OutputStream out, List<T> list)
Writes the data in the excel file.
-
Method Details
-
write
Writes the data in the excel file.- Parameters:
out
- output stream for writing excel filelist
- list of models
-