Interface ITable

All Superinterfaces:
IComponent<ITable>, IHasId<ITable>

public interface ITable extends IComponent<ITable>
  • Method Details

    • name

      ITable name(String name)
    • addRow

      ITable addRow(Consumer<ITableRow> consumer)
    • column

      IColumn column(String field)
    • serverSidePagination

      ITable serverSidePagination()
    • limit

      ITable limit(int limit)
    • totalRows

      ITable totalRows(int rows)
    • getLimit

      int getLimit()
    • getOffset

      int getOffset()
    • getPage

      int getPage()
    • getSorting

      Optional<ITableSorting> getSorting()
      Get the ITableSorting of a table if it is present.
      Returns:
      optional containing the sorting state of a table if it is present or an empty optional if no sorting-state is present.