Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getIndexFileName (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         */
        String getFileExtension();
    
        /**
         * Returns the default index file name for this format (e.g. "index.html", "index.json").
         *
         * @return the index file name
         */
        String getIndexFileName();
    
        /**
         * Formats a document source map into the target format string.
         *
         * @param source the document source map
         * @param excludeFields the set of field names to exclude from output
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 07 10:31:36 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/job/HtmlIndexExportFormatter.java

        public HtmlIndexExportFormatter() {
            // default constructor
        }
    
        @Override
        public String getFileExtension() {
            return ".html";
        }
    
        @Override
        public String getIndexFileName() {
            return "index.html";
        }
    
        @Override
        public String format(final Map<String, Object> source, final Set<String> excludeFields) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 07 10:31:36 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/job/JsonIndexExportFormatter.java

        public JsonIndexExportFormatter() {
            // default constructor
        }
    
        @Override
        public String getFileExtension() {
            return ".json";
        }
    
        @Override
        public String getIndexFileName() {
            return "index.json";
        }
    
        @Override
        public String format(final Map<String, Object> source, final Set<String> excludeFields) {
            final StringBuilder json = new StringBuilder();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 07 10:31:36 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final JsonIndexExportFormatter formatter = new JsonIndexExportFormatter();
            assertEquals(".json", formatter.getFileExtension());
            assertEquals("index.json", formatter.getIndexFileName());
        }
    
        @Test
        public void test_jsonFormatter_emptyCollection() {
            final Map<String, Object> source = new LinkedHashMap<>();
            source.put("title", "Test");
    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