Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setAllRecordCountRelation (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        }
    
        /**
         * Sets the relation type for the record count (e.g., "eq", "gte").
         *
         * @param allRecordCountRelation The record count relation
         */
        public void setAllRecordCountRelation(final String allRecordCountRelation) {
            this.allRecordCountRelation = allRecordCountRelation;
        }
    
        /**
         * Sets the total number of pages based on record count and page size.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            searchRenderData.setAllRecordCountRelation(null);
            assertNull(searchRenderData.getAllRecordCountRelation());
    
            // Test with empty string
            searchRenderData.setAllRecordCountRelation("");
            assertEquals("", searchRenderData.getAllRecordCountRelation());
    
            // Test with relation types
            searchRenderData.setAllRecordCountRelation("eq");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 23.6K bytes
    - Click Count (0)
Back to Top