-
- All Implemented Interfaces:
public class TableGeneratorThemes
-
-
Method Summary
Modifier and Type Method Description static TableGenerator
NO_BOARDER()
Get a new TableGenerator with no boarder lines. static TableGenerator
INVISIBLE_BOARDER()
Get a new TableGenerator with invisible boarder lines. static TableGenerator
FANCY_BOARDER()
Get a new TableGenerator with this theme: ┌──┬──┐ │ │ │ ├──┼──┤ │ │ │ └──┴──┘
static TableGenerator
FANCY_BOARDER_GRAY()
Get a new TableGenerator with gray boarders and with this theme: ┌──┬──┐ │ │ │ ├──┼──┤ │ │ │ └──┴──┘
static TableGenerator
FANCY_DOUBLE_BOARDER()
Get a new TableGenerator with this theme: ╔══╦══╗ ║ ║ ║ ╠══╬══╣ ║ ║ ║ ╚══╩══╝
static TableGenerator
MYSQL()
Get a new TableGenerator with this theme: +--+--+ | | | +--+--+ | | | +--+--+
static TableGenerator
DOTS()
Get a new TableGenerator with this theme: ....... : : : :..:..: : : : :..:..:
static TableGenerator
RST_SIMPLE()
Get a new TableGenerator with this theme: ======= ======= =======
static TableGenerator
REDDIT()
Get a new TableGenerator with this theme: | --|-- |
static TableGenerator
GITHUB()
Get a new TableGenerator with this theme: | | | |--|--| | | |
-
-
Method Detail
-
NO_BOARDER
static TableGenerator NO_BOARDER()
Get a new TableGenerator with no boarder lines.
-
INVISIBLE_BOARDER
static TableGenerator INVISIBLE_BOARDER()
Get a new TableGenerator with invisible boarder lines.
-
FANCY_BOARDER
static TableGenerator FANCY_BOARDER()
Get a new TableGenerator with this theme:
┌──┬──┐ │ │ │ ├──┼──┤ │ │ │ └──┴──┘
-
FANCY_BOARDER_GRAY
static TableGenerator FANCY_BOARDER_GRAY()
Get a new TableGenerator with gray boarders and with this theme:
┌──┬──┐ │ │ │ ├──┼──┤ │ │ │ └──┴──┘
-
FANCY_DOUBLE_BOARDER
static TableGenerator FANCY_DOUBLE_BOARDER()
Get a new TableGenerator with this theme:
╔══╦══╗ ║ ║ ║ ╠══╬══╣ ║ ║ ║ ╚══╩══╝
-
MYSQL
static TableGenerator MYSQL()
Get a new TableGenerator with this theme:
+--+--+ | | | +--+--+ | | | +--+--+
-
DOTS
static TableGenerator DOTS()
Get a new TableGenerator with this theme:
....... : : : :..:..: : : : :..:..:
-
RST_SIMPLE
static TableGenerator RST_SIMPLE()
Get a new TableGenerator with this theme:
======= ======= =======
-
REDDIT
static TableGenerator REDDIT()
Get a new TableGenerator with this theme:
| --|-- |
-
GITHUB
static TableGenerator GITHUB()
Get a new TableGenerator with this theme:
| | | |--|--| | | |
-
-
-
-