public abstract class TableFormatAbstract extends Object
UTF8TableFormat.| Constructor and Description |
|---|
TableFormatAbstract() |
| Modifier and Type | Method and Description |
|---|---|
abstract char |
getBottomEdgeBorderDivider() |
abstract char |
getBottomLeftCorner() |
abstract char |
getBottomRightCorner() |
abstract char |
getCross(boolean underHeaders,
boolean emptyData) |
abstract char |
getHorizontalBorderFill(boolean edge,
boolean underHeaders) |
abstract char |
getLeftEdgeBorderDivider(boolean underHeaders) |
abstract char |
getRightEdgeBorderDivider(boolean underHeaders) |
abstract char |
getTopEdgeBorderDivider() |
abstract char |
getTopLeftCorner() |
abstract char |
getTopRightCorner() |
abstract char |
getVerticalBorderFill(boolean edge) |
public abstract char getTopLeftCorner()
public abstract char getTopRightCorner()
public abstract char getBottomLeftCorner()
public abstract char getBottomRightCorner()
public abstract char getTopEdgeBorderDivider()
public abstract char getBottomEdgeBorderDivider()
public abstract char getLeftEdgeBorderDivider(boolean underHeaders)
underHeaders - True if the border is directly between the headers of the table and the first row.public abstract char getRightEdgeBorderDivider(boolean underHeaders)
underHeaders - True if the border is directly between the headers of the table and the first row.public abstract char getHorizontalBorderFill(boolean edge,
boolean underHeaders)
edge - True if the border is on the top or bottom edge of the table.underHeaders - True if the border is directly between the headers of the table and the first row.public abstract char getVerticalBorderFill(boolean edge)
edge - True if the border is on the left or right edge of the table.public abstract char getCross(boolean underHeaders,
boolean emptyData)
underHeaders - True if the border is directly between the headers of the table and the first row.emptyData - True if the table has no data. In this case it can be more aesthetically pleasing to use a
bottom edge divider to provide a flat surface for the bottom of the border.
(The cross will only appear under the headers at this point, so underHeaders is true when emptyData is true).Copyright © 2017. All rights reserved.