- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getNewOutput (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
public void setNewInput(final String newInput) { this.newInput = newInput; } /** * Gets the new output stem. * * @return The new output stem. */ public String getNewOutput() { return newOutput; } /** * Sets the new output stem. * * @param newOutputs The new output stem. */ public void setNewOutput(final String newOutputs) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
} /** * Returns the new output character sequence for update operations. * * @return the new output sequence, or null if no updates are pending */ public String getNewOutput() { return newOutput; } /** * Sets the new output character sequence for update operations. * Newline characters in the output are automatically replaced with spaces. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR); return new StemmerOverrideItem(item.getId(), item.getNewInput(), item.getNewOutput()); } return null; } finally { item.setNewInput(null); item.setNewOutput(null); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR); return new CharMappingItem(item.getId(), item.getNewInputs(), item.getNewOutput()); } return null; } finally { item.setNewInputs(null); item.setNewOutput(null); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0)