Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for createFormatter (0.07 seconds)

  1. src/main/java/org/codelibs/fess/job/IndexExportJob.java

            this.formatter = createFormatter(format);
            return this;
        }
    
        /**
         * Creates a formatter for the given format name.
         *
         * @param format the format name
         * @return the formatter instance
         * @throws IllegalArgumentException if the format is null, empty, or not supported
         */
        protected IndexExportFormatter createFormatter(final String format) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final IndexExportFormatter formatter = indexExportJob.createFormatter("json");
            assertTrue(formatter instanceof JsonIndexExportFormatter);
        }
    
        @Test
        public void test_createFormatter_caseInsensitive() {
            assertTrue(indexExportJob.createFormatter("HTML") instanceof HtmlIndexExportFormatter);
            assertTrue(indexExportJob.createFormatter("Json") instanceof JsonIndexExportFormatter);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
Back to Top