Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getInputs (0.32 sec)

  1. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

        /**
         * Gets the original input words.
         * Returns a defensive copy to prevent external modification.
         *
         * @return The original input words (defensive copy).
         */
        public String[] getInputs() {
            return inputs == null ? null : inputs.clone();
        }
    
        /**
         * Gets the input words as a newline-separated string.
         *
         * @return The input words as a string.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

         * Returns a defensive copy to prevent external modification.
         *
         * @return array of input sequences (defensive copy)
         */
        public String[] getInputs() {
            return inputs == null ? null : inputs.clone();
        }
    
        /**
         * Returns all input sequences joined with newline characters as a single string.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top