Class BigGridDemo.SpreadsheetWriter
- java.lang.Object
-
- org.apache.poi.examples.xssf.usermodel.BigGridDemo.SpreadsheetWriter
-
- Enclosing class:
- BigGridDemo
public static class BigGridDemo.SpreadsheetWriter extends Object
Writes spreadsheet data in a Writer. (YK: in future it may evolve in a full-featured API for streaming data in Excel)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreateCell(int columnIndex, double value)voidcreateCell(int columnIndex, double value, int styleIndex)voidcreateCell(int columnIndex, String value)voidcreateCell(int columnIndex, String value, int styleIndex)voidcreateCell(int columnIndex, Calendar value, int styleIndex)
-
-
-
Method Detail
-
createCell
public void createCell(int columnIndex, String value, int styleIndex) throws IOException- Throws:
IOException
-
createCell
public void createCell(int columnIndex, String value) throws IOException- Throws:
IOException
-
createCell
public void createCell(int columnIndex, double value, int styleIndex) throws IOException- Throws:
IOException
-
createCell
public void createCell(int columnIndex, double value) throws IOException- Throws:
IOException
-
createCell
public void createCell(int columnIndex, Calendar value, int styleIndex) throws IOException- Throws:
IOException
-
-