Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newOutput (0.06 sec)

  1. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

         *
         * @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) {
            newOutput = newOutputs;
        }
    
        /**
         * Gets the original input word.
         *
         * @return The original input word.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

        public String getNewOutput() {
            return newOutput;
        }
    
        /**
         * Sets the new output character sequence for update operations.
         * Newline characters in the output are automatically replaced with spaces.
         *
         * @param newOutput the new output sequence to set
         */
        public void setNewOutput(final String newOutput) {
            this.newOutput = newOutput == null ? null : newOutput.replace("\n", " ");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

         * @return The new output synonyms.
         */
        public String[] getNewOutputs() {
            return newOutputs;
        }
    
        /**
         * Sets the new output synonyms.
         *
         * @param newOutputs The new output synonyms.
         */
        public void setNewOutputs(final String[] newOutputs) {
            this.newOutputs = newOutputs;
        }
    
        /**
         * Gets the original input words.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/admin/dict/StemmerOverrideTests.java

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("output", "new_output");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/dict/MappingTests.java

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("output", "new_output");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top