Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Field and Description |
---|---|
static TXTFormat |
TXTFormat.DEFAULT |
Modifier and Type | Method and Description |
---|---|
TXTFormat |
TXTFormat.horizontalCellBorder(boolean newHorizontalCellBorder)
Whether the horizontal cell border (line between data cells) should be
displayed.
|
TXTFormat |
TXTFormat.horizontalHeaderBorder(boolean newHorizontalHeaderBorder)
Whether the horizontal header border (line between header and data cells)
should be displayed.
|
TXTFormat |
TXTFormat.horizontalTableBorder(boolean newHorizontalTableBorder)
Whether the horizontal table border (top and bottom line) should be
displayed.
|
TXTFormat |
TXTFormat.intersectLines(boolean newIntersectLines)
Whether horizontal and vertical lines should be intersected with a
'+' symbol. |
TXTFormat |
TXTFormat.maxColWidth(int newMaxColWidth)
The minimum column width, defaulting to no limit.
|
TXTFormat |
TXTFormat.maxRows(int newMaxRows)
The maximum number of rows to be included in the format, defaulting to all rows.
|
TXTFormat |
TXTFormat.minColWidth(int newMinColWidth)
The minimum column width, defaulting to 4
|
TXTFormat |
TXTFormat.verticalCellBorder(boolean newVerticalCellBorder)
Whether the vertical cell borders (lines between data cells) should be
displayed.
|
TXTFormat |
TXTFormat.verticalTableBorder(boolean newVerticalTableBorder)
Whether the vertical table border (left and right most lines) should be
displayed.
|
Modifier and Type | Method and Description |
---|---|
void |
Record.format(OutputStream stream,
TXTFormat format)
Like
Record.format(TXTFormat) , but the data is output onto an OutputStream . |
void |
Formattable.format(OutputStream stream,
TXTFormat format)
Like
Formattable.format(TXTFormat) , but the data is output onto an OutputStream . |
String |
Record.format(TXTFormat format)
Get a simple formatted representation of this result as a text data
structure, according to the format.
|
String |
Formattable.format(TXTFormat format)
Get a simple formatted representation of this result.
|
void |
Record.format(Writer writer,
TXTFormat format)
Like
Record.format(TXTFormat) , but the data is output onto a Writer . |
void |
Formattable.format(Writer writer,
TXTFormat format)
Like
Formattable.format(TXTFormat) , but the data is output onto a Writer . |
Copyright © 2019. All rights reserved.