Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getUpdatedSource (0.1 seconds)

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

            assertEquals("document", SuggestItem.Kind.DOCUMENT.toString());
            assertEquals("user", SuggestItem.Kind.USER.toString());
        }
    
        @Test
        public void testGetUpdatedSource() {
            // Test getUpdatedSource method
            String[] text = { "test" };
            String[][] readings = { { "test" } };
            SuggestItem item = new SuggestItem(text, readings, null, 10L, 20L, 1.0f, null, null, null, SuggestItem.Kind.QUERY);
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Mon Sep 01 13:33:03 GMT 2025
    - 16.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

        /**
         * Returns the updated source map by merging with existing source.
         * @param existingSource The existing source map.
         * @return The updated source map.
         */
        public Map<String, Object> getUpdatedSource(final Map<String, Object> existingSource) {
            return SuggestItemSerializer.toUpdatedSource(this, existingSource);
        }
    
        /**
         * Concatenates values to a destination list, avoiding duplicates.
    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)
Back to Top