Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTotal (0.11 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

         */
        public int getNum() {
            return num;
        }
    
        /**
         * Returns the total number of words.
         *
         * @return the total number of words
         */
        public long getTotal() {
            return total;
        }
    
        /**
         * Returns the list of suggested items.
         *
         * @return the list of suggested items
         */
        public List<SuggestItem> getItems() {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java

         */
        public int getNum() {
            return num;
        }
    
        /**
         * Returns the total number of hits.
         * @return The total number of hits.
         */
        public long getTotal() {
            return total;
        }
    
        /**
         * Returns the list of suggested items.
         * @return The list of items.
         */
        public List<SuggestItem> getItems() {
            return items;
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top