| 1 | package com.googlecode.lanterna.gui2.table; |
| 2 | |
| 3 | /** |
| 4 | * Describing how table cells are separated when drawn |
| 5 | */ |
| 6 | public enum TableCellBorderStyle { |
| 7 | /** |
| 8 | * There is no separation between table cells, they are drawn immediately next to each other |
| 9 | */ |
| 10 | None, |
| 11 | /** |
| 12 | * There is a single space of separation between the cells, drawn as a single line |
| 13 | */ |
| 14 | SingleLine, |
| 15 | /** |
| 16 | * There is a single space of separation between the cells, drawn as a double line |
| 17 | */ |
| 18 | DoubleLine, |
| 19 | /** |
| 20 | * There is a single space of separation between the cells, kept empty |
| 21 | */ |
| 22 | EmptySpace, |
| 23 | } |