Interface TablePageQuery
- All Known Implementing Classes:
TablePageQueryImpl
public interface TablePageQuery
Allows programmatic querying of
TablePage
s.- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionlistPage
(int firstResult, int maxResults) Executes the query and returns theTablePage
.Orders the resulting table page rows by the given column in ascending order.Orders the resulting table page rows by the given column in descending order.The name of the table of which a page must be fetched.
-
Method Details
-
tableName
The name of the table of which a page must be fetched. -
orderAsc
Orders the resulting table page rows by the given column in ascending order. -
orderDesc
Orders the resulting table page rows by the given column in descending order. -
listPage
Executes the query and returns theTablePage
.
-