AsciiDocTable |
AsciiDocTable.columnCell(String columnCell) |
Inserts a column-cell.
|
AsciiDocTable |
AsciiDocTable.columnCell(String columnCell,
AsciiDocTableColumnStyles style) |
Inserts a column-cell, with a style.
|
AsciiDocTable |
AsciiDocTable.columnsPerRow(int columnsPerRow) |
|
AsciiDocTable |
AsciiDocTable.columnWidths(int... columnWidths) |
Sets the widths for all columns-per-row, which can be a proportional integer (the default is 1) or a
percentage (1 to 99).
|
AsciiDocTable |
AsciiDocTable.columnWidths(List<Integer> columnWidths) |
Sets the widths for all columns-per-row, which can be a proportional integer (the default is 1) or a
percentage (1 to 99).
|
AsciiDocTable |
AsciiDocTable.headers(String... columnHeaders) |
Sets the column headers, where blank entries can be null/empty, but the length of the headers array must
be equal to the number of columns in the table.
|
AsciiDocTable |
AsciiDocTable.headers(List<String> columnHeaders) |
Sets the column headers, where blank entries can be null/empty, but the length of the headers array must
be equal to the number of columns in the table.
|
AsciiDocTable |
AsciiDocTable.rowEnd() |
Adds an optional space to visually delineate the end of a row in the generated markup.
|
AsciiDocTable |
AsciiDoc.tableStart() |
Starts a table at the current position.
|
AsciiDocTable |
AsciiDocTable.title(String title) |
Sets a table-title.
|