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