Interface Table

    • Method Detail

      • hasHeaderOption

        boolean hasHeaderOption()
      • getColumns

        java.util.List<Column> getColumns()
      • getHeader

        java.util.List<Row> getHeader()
      • getFooter

        java.util.List<Row> getFooter()
      • getBody

        java.util.List<Row> getBody()
      • getFrame

        java.lang.String getFrame()
        Returns the frame attribute of the table that defines what frame to render around the table. By default, the frame attribute is assigned the all value, which draws a border on each side of the table. If you set the frame attribute, you can override the default value with topbot, sides or none.
        Returns:
        the frame attribute
      • setFrame

        void setFrame​(java.lang.String frame)
        Sets the frame attribute.
        Parameters:
        frame - all, topbot, sides or none
        See Also:
        getFrame()
      • getGrid

        java.lang.String getGrid()
        Returns the grid attribute that defines what boundary lines to draw between rows and columns. By default, the grid attribute is assigned the all value, which draws lines around each cell. Alternative values are cols to draw lines between columns, rows to draw boundary lines between rows and none to draw no boundary lines
        Returns:
        the value of the grid attribute, usually either all, cols, rows or none
      • setGrid

        void setGrid​(java.lang.String grid)
        Sets the value of the attribute.
        Parameters:
        grid - usually either all, cols, rows or none
        See Also:
        getGrid()