Package 

Class TableGeneratorThemes

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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:
      
       |  |  |
       |--|--|
       |  |  |
      
      
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • 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:

        .......
        :  :  :
        :..:..:
        :  :  :
        :..:..:
        
      • GITHUB

         static TableGenerator GITHUB()

        Get a new TableGenerator with this theme:

        
         |  |  |
         |--|--|
         |  |  |