Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for toJsonString (0.06 seconds)

  1. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

        }
    
        /**
         * Converts the suggest item to a JSON string.
         * @return The JSON string representation of the suggest item.
         */
        public String toJsonString() {
            return SuggestItemSerializer.toJson(this);
        }
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/index/operations/ContentIndexingOperations.java

            logger.info(msg);
            if (logger.isDebugEnabled()) {
                for (final SuggestItem item : items) {
                    logger.debug("[{}] {}", type, item.toJsonString());
                }
            }
        }
    
        /**
         * Gets the contents parser.
         *
         * @return The contents parser
         */
        public ContentsParser getContentsParser() {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 21.7K bytes
    - Click Count (0)
Back to Top