Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for preTags (0.03 seconds)

  1. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

         */
        public String[] getPreTags() {
            return preTags;
        }
    
        /**
         * Sets the custom pre-tags for highlighting with fluent interface.
         *
         * @param preTags the pre-tags to set
         * @return this HighlightInfo instance for method chaining
         */
        public HighlightInfo preTags(final String... preTags) {
            this.preTags = preTags;
            return this;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 10:17:07 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                final HighlightBuilder highlightBuilder = new HighlightBuilder();
                final String[] preTags = highlightInfo.getPreTags();
                final String[] postTags = highlightInfo.getPostTags();
                if (preTags != null) {
                    highlightBuilder.preTags(preTags);
                }
                if (postTags != null) {
                    highlightBuilder.postTags(postTags);
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  3. src/main/java/org/codelibs/fess/chat/ChatClient.java

                        .numOfFragments(Integer.parseInt(fessConfig.getOrDefault("rag.chat.highlight.number.of.fragments", "3")))
                        .preTags(StringUtil.EMPTY)
                        .postTags(StringUtil.EMPTY);
            }
    
            @Override
            public String getSort() {
                return null;
            }
    
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
Back to Top