Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ReadingConverterChain (0.09 sec)

  1. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

         * @param settings the settings to be used by the AnalyzerConverter
         * @return a ReadingConverterChain with the default converters added
         */
        public static ReadingConverter createDefaultReadingConverter(final Client client, final SuggestSettings settings) {
            final ReadingConverterChain chain = new ReadingConverterChain();
            chain.addConverter(new AnalyzerConverter(client, settings));
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. README.md

    });
    ```
    
    ### Custom Text Processing
    
    ```java
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    import org.codelibs.fess.suggest.converter.ReadingConverterChain;
    import org.codelibs.fess.suggest.normalizer.ICUNormalizer;
    
    // Configure custom settings
    SuggestSettings settings = SuggestSettings.builder()
        .analyzer(analyzers -> {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sun Aug 31 03:31:14 UTC 2025
    - 12.1K bytes
    - Viewed (1)
  3. src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java

            String field = "content";
    
            List<String> results = converter.convert(text, field, "en", "ja");
    
            assertNotNull(results);
            // With multiple languages, should use ReadingConverterChain
        }
    
        @Test
        public void testConvertWithEmptyText() throws IOException {
            // Test convert with empty text
            String text = "";
            String field = "content";
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top