Uses of Class
org.lightcouch.Page

  • Uses of Page in org.lightcouch

    Methods in org.lightcouch that return Page
    Modifier and Type
    Method
    Description
    private <T> Page<T>
    View.queryNextPage(int rowsPerPage, String currentStartKey, String currentStartKeyDocId, String startKey, String startKeyDocId, Class<T> classOfT)
     
    <T> Page<T>
    View.queryPage(int rowsPerPage, String param, Class<T> classOfT)
    Queries a view for pagination, returns a next or a previous page, this method figures out which page to return based on the given param that is generated by an earlier call to this method, quering the first page is done by passing a null param.
    private <T> Page<T>
    View.queryPreviousPage(int rowsPerPage, String currentStartKey, String currentStartKeyDocId, String startKey, String startKeyDocId, Class<T> classOfT)