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 SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanWhether the horizontal cell border (line between data cells) should be displayed.@NotNull TXTFormathorizontalCellBorder(boolean newHorizontalCellBorder) Whether the horizontal cell border (line between data cells) should be displayed.booleanWhether the horizontal header border (line between header and data cells) should be displayed.@NotNull TXTFormathorizontalHeaderBorder(boolean newHorizontalHeaderBorder) Whether the horizontal header border (line between header and data cells) should be displayed.booleanWhether the horizontal table border (top and bottom line) should be displayed.@NotNull TXTFormathorizontalTableBorder(boolean newHorizontalTableBorder) Whether the horizontal table border (top and bottom line) should be displayed.booleanWhether horizontal and vertical lines should be intersected with a'+'symbol.@NotNull TXTFormatintersectLines(boolean newIntersectLines) Whether horizontal and vertical lines should be intersected with a'+'symbol.intThe maximum column width, defaulting to no limit.@NotNull TXTFormatmaxColWidth(int newMaxColWidth) The minimum column width, defaulting to no limit.intmaxRows()The maximum number of rows to be included in the format, defaulting to all rows.@NotNull TXTFormatmaxRows(int newMaxRows) The maximum number of rows to be included in the format, defaulting to all rows.intThe minimum column width, defaulting to 4@NotNull TXTFormatminColWidth(int newMinColWidth) The minimum column width, defaulting to 4booleanWhether the vertical cell borders (lines between data cells) should be displayed.@NotNull TXTFormatverticalCellBorder(boolean newVerticalCellBorder) Whether the vertical cell borders (lines between data cells) should be displayed.booleanWhether the vertical table border (left and right most lines) should be displayed.@NotNull TXTFormatverticalTableBorder(boolean newVerticalTableBorder) Whether the vertical table border (left and right most lines) should be displayed.
- 
Field Details- 
DEFAULT
 
- 
- 
Constructor Details- 
TXTFormatpublic TXTFormat()
 
- 
- 
Method Details- 
maxRowsThe maximum number of rows to be included in the format, defaulting to all rows.
- 
maxRowspublic int maxRows()The maximum number of rows to be included in the format, defaulting to all rows.
- 
minColWidthThe minimum column width, defaulting to 4
- 
minColWidthpublic int minColWidth()The minimum column width, defaulting to 4
- 
maxColWidthThe minimum column width, defaulting to no limit.
- 
maxColWidthpublic int maxColWidth()The maximum column width, defaulting to no limit.
- 
horizontalTableBorderWhether the horizontal table border (top and bottom line) should be displayed.
- 
horizontalTableBorderpublic boolean horizontalTableBorder()Whether the horizontal table border (top and bottom line) should be displayed.
- 
horizontalHeaderBorderWhether the horizontal header border (line between header and data cells) should be displayed.
- 
horizontalHeaderBorderpublic boolean horizontalHeaderBorder()Whether the horizontal header border (line between header and data cells) should be displayed.
- 
horizontalCellBorderWhether the horizontal cell border (line between data cells) should be displayed.
- 
horizontalCellBorderpublic boolean horizontalCellBorder()Whether the horizontal cell border (line between data cells) should be displayed.
- 
verticalTableBorderWhether the vertical table border (left and right most lines) should be displayed.
- 
verticalTableBorderpublic boolean verticalTableBorder()Whether the vertical table border (left and right most lines) should be displayed.
- 
verticalCellBorderWhether the vertical cell borders (lines between data cells) should be displayed.
- 
verticalCellBorderpublic boolean verticalCellBorder()Whether the vertical cell borders (lines between data cells) should be displayed.
- 
intersectLinesWhether horizontal and vertical lines should be intersected with a'+'symbol.
- 
intersectLinespublic boolean intersectLines()Whether horizontal and vertical lines should be intersected with a'+'symbol.
 
-