- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getNewInputs (0.15 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
} /** * Gets the new input words. * Returns a defensive copy to prevent external modification. * * @return The new input words (defensive copy). */ public String[] getNewInputs() { return newInputs == null ? null : newInputs.clone(); } /** * Sets the new input words. * * @param newInputs The new input words. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* Returns a defensive copy to prevent external modification. * * @return array of new input sequences (defensive copy), or null if no updates are pending */ public String[] getNewInputs() { return newInputs == null ? null : newInputs.clone(); } /** * Sets the array of new input character sequences for update operations. *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/mapping/CharMappingFile.java
// update 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) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
// update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR); return new SynonymItem(item.getId(), item.getNewInputs(), item.getNewOutputs()); } return null; } finally { item.setNewInputs(null); item.setNewOutputs(null);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 15.9K bytes - Viewed (0)