Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getQueryCountMap (5.67 sec)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

             * @return the name
             */
            public String getName() {
                return name;
            }
    
        }
    
        /**
         * @return the queryCountMap
         */
        public Map<String, Long> getQueryCountMap() {
            return queryCountMap;
        }
    
        /**
         * @return the fieldList
         */
        public List<Field> getFieldList() {
            return fieldList;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                            return fieldMap;
                        }).collect(Collectors.toList());
                    }
                    // facet q
                    if (facetResponse.getQueryCountMap() != null) {
                        facetQuery = facetResponse.getQueryCountMap().entrySet().stream().map(e -> {
                            final Map<String, Object> valueCount = new HashMap<>(2, 1f);
                            valueCount.put("value", e.getKey());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    // facet q
                    buf.append(',');
                    buf.append("\"facet_query\":[");
                    if (facetResponse.getQueryCountMap() != null) {
                        boolean first1 = true;
                        for (final Map.Entry<String, Long> entry : facetResponse.getQueryCountMap().entrySet()) {
                            if (!first1) {
                                buf.append(',');
                            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top