Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getMaxReadingNum (0.09 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)
  3. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

                    if (j == 0) {
                        for (final StringBuilder buf : bufList) {
                            buf.append(alphabets[j]);
                        }
                    } else if (bufList.size() < getMaxReadingNum()) {
                        final List<StringBuilder> tmpBufList = deepCopyBufList(originBufList);
                        for (final StringBuilder buf : tmpBufList) {
                            buf.append(alphabets[j]);
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Mon Nov 17 14:28:21 GMT 2025
    - 11.4K bytes
    - Click Count (0)
Back to Top