Interface TablePageQuery
-
- All Known Implementing Classes:
TablePageQueryImpl
public interface TablePageQueryAllows programmatic querying ofTablePages.- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TablePagelistPage(int firstResult, int maxResults)Executes the query and returns theTablePage.TablePageQueryorderAsc(java.lang.String column)Orders the resulting table page rows by the given column in ascending order.TablePageQueryorderDesc(java.lang.String column)Orders the resulting table page rows by the given column in descending order.TablePageQuerytableName(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.
-
-