java.lang.Object
org.jooq.TXTFormat
A text formatting type, which can be used to configure text imports /
exports.
The type is immutable, meaning calls to setters like maxRows(int)
do
not modify the original reference, but return a new one instead.
- Author:
- Lukas Eder
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Whether the horizontal cell border (line between data cells) should be displayed.horizontalCellBorder(boolean newHorizontalCellBorder)
Whether the horizontal cell border (line between data cells) should be displayed.boolean
Whether the horizontal header border (line between header and data cells) should be displayed.horizontalHeaderBorder(boolean newHorizontalHeaderBorder)
Whether the horizontal header border (line between header and data cells) should be displayed.boolean
Whether the horizontal table border (top and bottom line) should be displayed.horizontalTableBorder(boolean newHorizontalTableBorder)
Whether the horizontal table border (top and bottom line) should be displayed.boolean
Whether horizontal and vertical lines should be intersected with a'+'
symbol.intersectLines(boolean newIntersectLines)
Whether horizontal and vertical lines should be intersected with a'+'
symbol.int
The maximum column width, defaulting to no limit.maxColWidth(int newMaxColWidth)
The minimum column width, defaulting to no limit.int
maxRows()
The maximum number of rows to be included in the format, defaulting to all rows.maxRows(int newMaxRows)
The maximum number of rows to be included in the format, defaulting to all rows.int
The minimum column width, defaulting to 4minColWidth(int newMinColWidth)
The minimum column width, defaulting to 4boolean
Whether the vertical cell borders (lines between data cells) should be displayed.verticalCellBorder(boolean newVerticalCellBorder)
Whether the vertical cell borders (lines between data cells) should be displayed.boolean
Whether the vertical table border (left and right most lines) should be displayed.verticalTableBorder(boolean newVerticalTableBorder)
Whether the vertical table border (left and right most lines) should be displayed.
-
Field Details
-
DEFAULT
-
-
Constructor Details
-
TXTFormat
public TXTFormat()
-
-
Method Details
-
maxRows
The maximum number of rows to be included in the format, defaulting to all rows. -
maxRows
public int maxRows()The maximum number of rows to be included in the format, defaulting to all rows. -
minColWidth
The minimum column width, defaulting to 4 -
minColWidth
public int minColWidth()The minimum column width, defaulting to 4 -
maxColWidth
The minimum column width, defaulting to no limit. -
maxColWidth
public int maxColWidth()The maximum column width, defaulting to no limit. -
horizontalTableBorder
Whether the horizontal table border (top and bottom line) should be displayed. -
horizontalTableBorder
public boolean horizontalTableBorder()Whether the horizontal table border (top and bottom line) should be displayed. -
horizontalHeaderBorder
Whether the horizontal header border (line between header and data cells) should be displayed. -
horizontalHeaderBorder
public boolean horizontalHeaderBorder()Whether the horizontal header border (line between header and data cells) should be displayed. -
horizontalCellBorder
Whether the horizontal cell border (line between data cells) should be displayed. -
horizontalCellBorder
public boolean horizontalCellBorder()Whether the horizontal cell border (line between data cells) should be displayed. -
verticalTableBorder
Whether the vertical table border (left and right most lines) should be displayed. -
verticalTableBorder
public boolean verticalTableBorder()Whether the vertical table border (left and right most lines) should be displayed. -
verticalCellBorder
Whether the vertical cell borders (lines between data cells) should be displayed. -
verticalCellBorder
public boolean verticalCellBorder()Whether the vertical cell borders (lines between data cells) should be displayed. -
intersectLines
Whether horizontal and vertical lines should be intersected with a'+'
symbol. -
intersectLines
public boolean intersectLines()Whether horizontal and vertical lines should be intersected with a'+'
symbol.
-