Uses of Class
com.googlecode.lanterna.gui2.table.TableCellBorderStyle
-
Packages that use TableCellBorderStyle Package Description com.googlecode.lanterna.gui2.table -
-
Uses of TableCellBorderStyle in com.googlecode.lanterna.gui2.table
Fields in com.googlecode.lanterna.gui2.table declared as TableCellBorderStyle Modifier and Type Field Description private TableCellBorderStyle
DefaultTableRenderer. cellHorizontalBorderStyle
private TableCellBorderStyle
DefaultTableRenderer. cellVerticalBorderStyle
private TableCellBorderStyle
DefaultTableRenderer. headerHorizontalBorderStyle
private TableCellBorderStyle
DefaultTableRenderer. headerVerticalBorderStyle
Methods in com.googlecode.lanterna.gui2.table that return TableCellBorderStyle Modifier and Type Method Description static TableCellBorderStyle
TableCellBorderStyle. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TableCellBorderStyle[]
TableCellBorderStyle. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.googlecode.lanterna.gui2.table with parameters of type TableCellBorderStyle Modifier and Type Method Description private char
DefaultTableRenderer. getHorizontalCharacter(TableCellBorderStyle style)
private char
DefaultTableRenderer. getJunctionCharacter(TableCellBorderStyle mainStyle, TableCellBorderStyle styleAbove, TableCellBorderStyle styleBelow)
private char
DefaultTableRenderer. getVerticalCharacter(TableCellBorderStyle style)
void
DefaultTableRenderer. setCellHorizontalBorderStyle(TableCellBorderStyle cellHorizontalBorderStyle)
Sets the style to be used when horizontally separating table cells from each other.void
DefaultTableRenderer. setCellVerticalBorderStyle(TableCellBorderStyle cellVerticalBorderStyle)
Sets the style to be used when vertically separating table cells from each other.void
DefaultTableRenderer. setHeaderHorizontalBorderStyle(TableCellBorderStyle headerHorizontalBorderStyle)
Sets the style to be used when separating the table header labels from each other.void
DefaultTableRenderer. setHeaderVerticalBorderStyle(TableCellBorderStyle headerVerticalBorderStyle)
Sets the style to be used when separating the table header row from the actual "data" cells below.
-