Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getAllRecordCount (0.08 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                final SearchResult searchResult = searchers[0].search(query, reqParams, userBean);
                long allRecordCount = searchResult.getAllRecordCount();
                if (Relation.EQUAL_TO.toString().equals(searchResult.getAllRecordCountRelation())) {
                    allRecordCount += offset;
                }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            data.setPageSize(queryResponseList.getPageSize());
            data.setCurrentPageNumber(queryResponseList.getCurrentPageNumber());
            data.setAllRecordCount(queryResponseList.getAllRecordCount());
            data.setAllRecordCountRelation(queryResponseList.getAllRecordCountRelation());
            data.setAllPageCount(queryResponseList.getAllPageCount());
            data.setExistNextPage(queryResponseList.isExistNextPage());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        }
    
        public int getPageSize() {
            return pageSize;
        }
    
        public int getCurrentPageNumber() {
            return currentPageNumber;
        }
    
        public long getAllRecordCount() {
            return allRecordCount;
        }
    
        public String getAllRecordCountRelation() {
            return allRecordCountRelation;
        }
    
        public int getAllPageCount() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            }
    
            @Override
            public List<E> subList(final int fromIndex, final int toIndex) {
                return parent.subList(fromIndex, toIndex);
            }
    
            public int getAllRecordCount() {
                return allRecordCount;
            }
    
            public int getPageSize() {
                return pageSize;
            }
    
            public int getCurrentPageNumber() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                execTime = data.getExecTime();
                pageSize = data.getPageSize();
                pageNumber = data.getCurrentPageNumber();
                recordCount = data.getAllRecordCount();
                recordCountRelation = data.getAllRecordCountRelation();
                pageCount = data.getAllPageCount();
                nextPage = data.isExistNextPage();
                prevPage = data.isExistPrevPage();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final String pageSize = Integer.toString(data.getPageSize());
                final String currentPageNumber = Integer.toString(data.getCurrentPageNumber());
                final String allRecordCount = Long.toString(data.getAllRecordCount());
                final String allRecordCountRelation = data.getAllRecordCountRelation();
                final String allPageCount = Integer.toString(data.getAllPageCount());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top