Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for fromSource (0.44 seconds)

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

        /**
         * Parses a source map from OpenSearch and creates a SuggestItem.
         *
         * @param source The source map from OpenSearch
         * @return A new SuggestItem instance
         */
        public static SuggestItem fromSource(final Map<String, Object> source) {
            final String text = source.get(FieldNames.TEXT).toString();
            final List<String[]> readings = new ArrayList<>();
            for (int i = 0;; i++) {
    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/entity/SuggestItem.java

         * @param source The source map.
         * @return A SuggestItem instance.
         */
        public static SuggestItem parseSource(final Map<String, Object> source) {
            return SuggestItemSerializer.fromSource(source);
        }
    
        /**
         * Returns the updated source map by merging with existing source.
         * @param existingSource The existing source map.
         * @return The updated source map.
         */
    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