- All Known Implementing Classes:
- RowWriterImpl
public interface RowWriter
The Interface RowWriter.
- 
Method SummaryModifier and TypeMethodDescriptionThe set of instructions for dealing with rows.writeHeader(String[] headerNames) Creates and sets the header of the table.voidwriteHeader(Header header) Sets the header of the table.Writes the cells of a table row as an individual row.voidWrites a single row to the Writer.voidWrites multiple rows with cells to the table.voidwriteRows(Collection<Row> rows) Writes multiples rows to the table.
- 
Method Details- 
writeRowsWrites multiple rows with cells to the table.- Parameters:
- rows- two-dimensional string array with rows and cells within
 
- 
writeRowsWrites multiples rows to the table.- Parameters:
- rows- collection of rows
 
- 
writeRowWrites the cells of a table row as an individual row.- Parameters:
- cells- the individual cells of the row
- Returns:
- the row just written
 
- 
writeRowWrites a single row to the Writer.- Parameters:
- row- row to write to the Writer
 
- 
writeHeaderCreates and sets the header of the table.- Parameters:
- headerNames- the individual cells of the header row
- Returns:
- the Header, created from the header names
 
- 
writeHeaderSets the header of the table.- Parameters:
- header- the header row
 
- 
getRowInstructionsRowInstructions getRowInstructions()The set of instructions for dealing with rows.- Returns:
- row instructions
 
 
-