public interface IExportWriter
Modifier and Type | Method and Description |
---|---|
void |
beginDocument(java.lang.String name,
java.io.OutputStream out)
Called at the start of process to create the output document, which should get written out 'out'
|
void |
beginRow()
Called at the start of every row
|
void |
emitCell(int cellPos,
java.lang.Object val,
int maxType,
ICellStyle style,
IExportContext context)
Writes a cell's value to the output document
|
void |
emitComma()
Writes a single comma string value to the output document
|
void |
endDocument()
Called at the end of the process to finalize the document creation
|
void |
endRow()
Called at the end of every row
|
void beginDocument(java.lang.String name, java.io.OutputStream out)
name
- out
- void endDocument()
void beginRow()
void endRow()
void emitCell(int cellPos, java.lang.Object val, int maxType, ICellStyle style, IExportContext context)
cellPos
- Cell postition, starting at 0val
- Cell valuemaxType
- MXFormat
typestyle
- Style to apply (can be null)context
- IExportContext
contextvoid emitComma()