Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getInputValue (0.13 sec)

  1. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

         */
        public String getInput() {
            return input;
        }
    
        /**
         * Gets the input value or empty string if null.
         * @return the input value or empty string
         */
        public String getInputValue() {
            if (input == null) {
                return StringUtil.EMPTY;
            }
            return input;
        }
    
        /**
         * Checks if this item has been updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

        public String getInput() {
            return input;
        }
    
        /**
         * Gets the value of the stopword.
         *
         * @return The stopword value, or an empty string if null.
         */
        public String getInputValue() {
            if (input == null) {
                return StringUtil.EMPTY;
            }
            return input;
        }
    
        /**
         * Checks if the item has been updated.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.input = entity.getInputValue();
            return body;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.input = entity.getInputValue();
            return body;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top