- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getMaxReadingNum (0.09 seconds)
-
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) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java
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) -
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)