Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getValueCountMap (0.06 sec)

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

            /**
             * Gets the map of field values and their document counts.
             *
             * @return the valueCountMap containing field values and counts
             */
            public Map<String, Long> getValueCountMap() {
                return valueCountMap;
            }
    
            /**
             * Gets the decoded name of this field facet.
             *
             * @return the field name
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            buf.append(",\"result\":[");
                            boolean first2 = true;
                            for (final Map.Entry<String, Long> entry : field.getValueCountMap().entrySet()) {
                                if (!first2) {
                                    buf.append(',');
                                } else {
                                    first2 = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                            final Map<String, Object> fieldMap = new HashMap<>(2, 1f);
                            fieldMap.put("name", field.getName());
                            fieldMap.put("result", field.getValueCountMap().entrySet().stream().map(e -> {
                                final Map<String, Object> valueCount = new HashMap<>(2, 1f);
                                valueCount.put("value", e.getKey());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top