Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getMaxReadingNum (0.07 seconds)

  1. src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java

     */
    public interface ReadingConverter {
    
        /**
         * Returns the maximum number of readings.
         *
         * @return the maximum number of readings, default is 10.
         */
        default int getMaxReadingNum() {
            return 10;
        }
    
        /**
         * Initializes the converter.
         *
         * @throws IOException if an I/O error occurs during initialization.
         */
        void init() throws IOException;
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Mon Nov 17 14:28:21 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java

            List<String> currentInputs = new ArrayList<>();
            if (text != null) {
                currentInputs.add(text);
            }
    
            final int maxReadingNum = getMaxReadingNum();
    
            // Apply each converter in sequence
            for (final ReadingConverter converter : converters) {
                final List<String> nextInputs = new ArrayList<>();
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Wed Dec 31 05:38:07 GMT 2025
    - 3.8K bytes
    - Click Count (1)
Back to Top