- Sort Score
- Result 10 results
- Languages All
Results 11 - 16 of 16 for getInputs (0.06 sec)
-
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
newOutput = newOutputs; } /** * Gets the original input word. * * @return The original input word. */ public String getInput() { return input; } /** * Gets the original output stem. * * @return The original output stem. */ public String getOutput() { return output;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
*/ public void setNewInput(final String newInput) { this.newInput = newInput; } /** * Gets the input value for this item. * @return the input value */ public String getInput() { return input; } /** * Gets the input value or empty string if null. * @return the input value or empty string */ public String getInputValue() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
public void setNewInput(final String newInput) { this.newInput = newInput; } /** * Gets the original stopword. * * @return The original stopword. */ public String getInput() { return input; } /** * Gets the value of the stopword. * * @return The stopword value, or an empty string if null. */ public String getInputValue() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItemTest.java
public void test_new1() { final StemmerOverrideItem stemmerOverrideItem = new StemmerOverrideItem(1, "aaa", "a"); assertEquals(1, stemmerOverrideItem.getId()); assertEquals("aaa", stemmerOverrideItem.getInput()); assertEquals("a", stemmerOverrideItem.getOutput()); assertNull(stemmerOverrideItem.getNewInput()); assertNull(stemmerOverrideItem.getNewOutput()); assertFalse(stemmerOverrideItem.isUpdated());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
validate(form, messages -> {}, () -> asListHtml(form.dictId)); stemmerOverrideService.getStemmerOverrideItem(form.dictId, form.id).ifPresent(entity -> { form.input = entity.getInput(); form.output = entity.getOutput(); }).orElse(() -> { throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0)