Uses of Class
org.nocrala.tools.texttablefmt.ShownBorders

Uses of ShownBorders in org.nocrala.tools.texttablefmt
 

Fields in org.nocrala.tools.texttablefmt declared as ShownBorders
static ShownBorders ShownBorders.ALL
          Render all borders and separators.
static ShownBorders ShownBorders.HEADER_AND_COLUMNS
          Render the header separator, and the left, center and right separators.
static ShownBorders ShownBorders.HEADER_AND_FIRST_COLLUMN
          Render the header separator and the left separator.
static ShownBorders ShownBorders.HEADER_AND_FOOTER
          Render the header and footer separators.
static ShownBorders ShownBorders.HEADER_FIRST_AND_LAST_COLLUMN
          Render the header separator, and the left and right separator.
static ShownBorders ShownBorders.HEADER_FOOTER_AND_COLUMNS
          Render header and footer separators, and the left, center and right separators.
static ShownBorders ShownBorders.HEADER_FOOTER_AND_FIRST_COLLUMN
          Render the header and footer separator, and the left separator.
static ShownBorders ShownBorders.HEADER_FOOTER_FIRST_AND_LAST_COLLUMN
          Render the header and footer separator, and the left and right separators.
static ShownBorders ShownBorders.HEADER_ONLY
          Render only the header separator.
static ShownBorders ShownBorders.NONE
          Renders no border nor separator.
static ShownBorders ShownBorders.SURROUND
          Render borders only.
static ShownBorders ShownBorders.SURROUND_HEADER_AND_COLUMNS
          Render all the borders, the header separator, and the left, center and right separators.
static ShownBorders ShownBorders.SURROUND_HEADER_FOOTER_AND_COLUMNS
          Render all the borders, the header and footer separators, and the left, center and right separators.
 

Constructors in org.nocrala.tools.texttablefmt with parameters of type ShownBorders
StreamingTable(java.lang.Appendable appendable, int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders)
          Creates a streaming table that will write to an Appendable object using specific border style and shown borders, no XML escaping and no left margin.
StreamingTable(java.lang.Appendable appendable, int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders, boolean escapeXml)
          Creates a streaming table that will write to an Appendable object using specific border style, shown borders and XML escaping and without left margin.
StreamingTable(java.lang.Appendable appendable, int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders, boolean escapeXml, int leftMargin)
          Creates a streaming table that will write to an Appendable object using specific border style, shown borders, XML escaping and left margin.
StreamingTable(java.lang.Appendable appendable, int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders, boolean escapeXml, java.lang.String prompt)
          Creates a streaming table that will write to an Appendable object using specific border style, shown borders, XML escaping and left margin.
Table(int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders)
          Creates a table using the specified border style and shown borders, with no XML escaping and no left margin.
Table(int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders, boolean escapeXml)
          Creates a table using the specified border style and shown borders, XML escaping and no left margin.
Table(int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders, boolean escapeXml, int leftMargin)
          Creates a table using the specified border style and shown borders, XML escaping and left margin.
Table(int totalColumns, BorderStyle borderStyle, ShownBorders shownBorders, boolean escapeXml, java.lang.String prompt)
          Creates a table using the specified border style and shown borders, XML escaping and left margin.
 



Nocrala tools.