- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getMaxReadingNum (0.07 sec)
-
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java
final List<String> nextInputs = new ArrayList<>(); // Process each input from the previous converter for (final String input : currentInputs) { if (resultSet.size() >= getMaxReadingNum()) { break; } // Convert the input and collect results final List<String> results = converter.convert(input, field, lang);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 3.3K bytes - Viewed (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;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 1.6K bytes - Viewed (0)