Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getCurrentPageNumber (0.1 sec)

  1. DictionaryFile.java

    } L218: L219: public int getAllRecordCount() { L220: return allRecordCount; L221: } L222: L223: public int getPageSize() { L224: return pageSize; L225: } L226: L227: public int getCurrentPageNumber() { L228: return currentPageNumber; L229: } L230: L231: public int getAllPageCount() { L232: return allPageCount; L233: } L234: L235: public boolean isExistPrePage() { L236: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      6.8K bytes
  2. QueryResponseList.java

    int getStart() { L246: return start; L247: } L248: L249: public int getOffset() { L250: return offset; L251: } L252: L253: public int getPageSize() { L254: return pageSize; L255: } L256: L257: public int getCurrentPageNumber() { L258: return currentPageNumber; L259: } L260: L261: public long getAllRecordCount() { L262: return allRecordCount; L263: } L264: L265: public String getAllRecordCountRelation() { L266: return allRecordCountRelation;...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      8.9K bytes
  3. ApiResult.java

    docs = data.getDocumentItems(); L177: highlightParams = data.getAppendHighlightParams(); L178: execTime = data.getExecTime(); L179: pageSize = data.getPageSize(); L180: pageNumber = data.getCurrentPageNumber(); L181: recordCount = data.getAllRecordCount(); L182: recordCountRelation = data.getAllRecordCountRelation(); L183: pageCount = data.getAllPageCount(); L184: nextPage = data.isExistNextPage(); L185:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.5K bytes
  4. SearchApiManager.java

    data.getExecTime(); L312: final String queryTime = Long.toString(data.getQueryTime()); L313: final String pageSize = Integer.toString(data.getPageSize()); L314: final String currentPageNumber = Integer.toString(data.getCurrentPageNumber()); L315: final String allRecordCount = Long.toString(data.getAllRecordCount()); L316: final String allRecordCountRelation = data.getAllRecordCountRelation(); L317: final String allPageCount = Integer.toStr...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  5. SearchHelper.java

    data.setExecTime(execTime); L138: L139: final String queryId = ComponentUtil.getQueryHelper().generateId(); L140: L141: data.setPageSize(queryResponseList.getPageSize()); L142: data.setCurrentPageNumber(queryResponseList.getCurrentPageNumber()); L143: data.setAllRecordCount(queryResponseList.getAllRecordCount()); L144: data.setAllRecordCountRelation(queryResponseList.getAllRecordCountRelation()); L145: data.setAllPageCount(queryResponseList.getAllPageCount());...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      19.1K bytes
Back to top