Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getQueryFuzzyTranspositions (0.1 sec)

  1. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

                                .prefixLength(fessConfig.getQueryFuzzyPrefixLengthAsInteger())
                                .transpositions(Constants.TRUE.equalsIgnoreCase(fessConfig.getQueryFuzzyTranspositions())));
            }
    
            if (isSearchField(field)) {
                final String text = term.text();
                context.addFieldLog(field, text);
                context.addHighlightedQuery(text);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                }
    
                @Override
                public Integer getQueryFuzzyPrefixLengthAsInteger() {
                    return 0;
                }
    
                @Override
                public String getQueryFuzzyTranspositions() {
                    return "true";
                }
    
                @Override
                public String getResponseFieldContentDescription() {
                    return "content_description";
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether to allow transpositions in fuzzy queries.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryFuzzyTranspositions();
    
        /**
         * Is the property for the key 'query.fuzzy.transpositions' true? <br>
         * The value is, e.g. true <br>
         * comment: Whether to allow transpositions in fuzzy queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top