public interface Renderer
Table to strings or Appendables.| Modifier and Type | Method and Description |
|---|---|
default java.lang.String |
render(Table<?> table)
Renders the given table as a string.
|
void |
render(Table<?> table,
java.lang.Appendable out)
Renders the given table into the given appendable.
|
default java.lang.String render(Table<?> table)
Defaults to render(Table, Appendable).
This method should not be overriden.
table - the tablevoid render(Table<?> table, java.lang.Appendable out) throws java.io.IOException
table - the table to renderout - the Appendable to which the rendered result should be appendedjava.io.IOException - if one occurs when appending to the output