Interface TablePageQuery

All Known Implementing Classes:
TablePageQueryImpl

public interface TablePageQuery
Allows programmatic querying of TablePages.
Author:
Joram Barrez
  • Method Details

    • tableName

      TablePageQuery tableName(String tableName)
      The name of the table of which a page must be fetched.
    • orderAsc

      TablePageQuery orderAsc(String column)
      Orders the resulting table page rows by the given column in ascending order.
    • orderDesc

      TablePageQuery orderDesc(String column)
      Orders the resulting table page rows by the given column in descending order.
    • listPage

      TablePage listPage(int firstResult, int maxResults)
      Executes the query and returns the TablePage.