Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for getAllPageCount (0.25 sec)

  1. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        }
    
        public long getAllRecordCount() {
            return allRecordCount;
        }
    
        public String getAllRecordCountRelation() {
            return allRecordCountRelation;
        }
    
        public int getAllPageCount() {
            return allPageCount;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public boolean isExistPrevPage() {
            return existPrevPage;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

            return allRecordCount;
        }
    
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        public int getAllPageCount() {
            return allPageCount;
        }
    
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        public boolean isExistPrePage() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            public int getPageSize() {
                return pageSize;
            }
    
            public int getCurrentPageNumber() {
                return currentPageNumber;
            }
    
            public int getAllPageCount() {
                return allPageCount;
            }
    
            public boolean isExistPrePage() {
                return currentPageNumber != 1;
            }
    
            public boolean isExistNextPage() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                pageNumber = data.getCurrentPageNumber();
                recordCount = data.getAllRecordCount();
                recordCountRelation = data.getAllRecordCountRelation();
                pageCount = data.getAllPageCount();
                nextPage = data.isExistNextPage();
                prevPage = data.isExistPrevPage();
                startRecordNumber = data.getCurrentStartRecordNumber();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            data.setAllRecordCount(queryResponseList.getAllRecordCount());
            data.setAllRecordCountRelation(queryResponseList.getAllRecordCountRelation());
            data.setAllPageCount(queryResponseList.getAllPageCount());
            data.setExistNextPage(queryResponseList.isExistNextPage());
            data.setExistPrevPage(queryResponseList.isExistPrevPage());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final String allRecordCount = Long.toString(data.getAllRecordCount());
                final String allRecordCountRelation = data.getAllRecordCountRelation();
                final String allPageCount = Integer.toString(data.getAllPageCount());
                final List<Map<String, Object>> documentItems = data.getDocumentItems();
                final FacetResponse facetResponse = data.getFacetResponse();
                final String queryId = data.getQueryId();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
Back to top