Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java

        public void testToJsonString() {
            // Test toJsonString method
            String[] text = { "json", "test" };
            String[][] readings = { { "json" }, { "test" } };
            String[] tags = { "tag1" };
    
            SuggestItem item = new SuggestItem(text, readings, null, 0L, 10L, 1.0f, tags, null, null, SuggestItem.Kind.QUERY);
    
            String json = item.toJsonString();
    
            assertNotNull(json);
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Sep 01 13:33:03 GMT 2025
    - 16.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            logger.info(msg);
            if (logger.isDebugEnabled()) {
                for (final SuggestItem item : items) {
                    logger.debug("[{}] {}", type, item.toJsonString());
                }
            }
        }
    
        /**
         * Indexes documents from a DocumentReader asynchronously.
         * @param reader The supplier for DocumentReader.
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 34.4K bytes
    - Click Count (0)
Back to Top