@ThreadSafe public interface TableWriter extends Closeable
Write rows to a table.
Instances of this class are used to actually write rows to a table. Once the table has finished, call close()
to finish the table and close the underlying output.
Modifier and Type | Method and Description |
---|---|
void |
close()
Finish the table.
|
TableLayout |
getLayout()
Get the layout of this table.
|
void |
writeRow(List<?> row)
Write a row to the table.
|
void |
writeRow(Object... row)
Write a row to the table.
|
TableLayout getLayout()
Get the layout of this table.
void writeRow(Object... row) throws IOException
Write a row to the table. This method is thread-safe.
row
- A row of values. If the table requires more columns, the remaining columns are empty. The row is copied if necessary; the caller is free to re-use the same array for returnValue calls.IOException
- if an error occurs writing the row.IllegalArgumentException
- if row
has the incorrect number of columns.void writeRow(List<?> row) throws IOException
Write a row to the table. This method is thread-safe.
row
- A row of values. If the table requires more columns, the remaining columns are empty. The row is copied if necessary; the caller is free to re-use the same array for returnValue calls.IOException
- if an error occurs writing the row.IllegalArgumentException
- if row
has the incorrect number of columns.void close() throws IOException
Finish the table. Depending on how it was constructed, some underlying resource may be closed.
close
in interface AutoCloseable
close
in interface Closeable
IOException