Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for forPattern (0.05 seconds)

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

         */
        public IndexExportJob format(final String format) {
            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
         */
    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("html");
            assertTrue(formatter instanceof HtmlIndexExportFormatter);
        }
    
        @Test
        public void test_createFormatter_json() {
            final IndexExportFormatter formatter = indexExportJob.createFormatter("json");
            assertTrue(formatter instanceof JsonIndexExportFormatter);
        }
    
        @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)
  3. src/main/java/org/codelibs/fess/job/JsonIndexExportFormatter.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.job;
    
    import java.util.Collection;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Formatter that outputs index documents as JSON files.
     */
    public class JsonIndexExportFormatter implements IndexExportFormatter {
    
        /**
         * Creates a new JsonIndexExportFormatter instance.
         */
    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/main/java/org/codelibs/fess/job/HtmlIndexExportFormatter.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.job;
    
    import java.util.Collection;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Formatter that outputs index documents as HTML files.
     */
    public class HtmlIndexExportFormatter implements IndexExportFormatter {
    
        /**
         * Creates a new HtmlIndexExportFormatter instance.
         */
    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)
  5. pom.xml

    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>com.mycila</groupId>
    				<artifactId>license-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<groupId>net.revelc.code.formatter</groupId>
    				<artifactId>formatter-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<groupId>org.codelibs.maven</groupId>
    				<artifactId>yuicompressor-maven-plugin</artifactId>
    				<version>2.0.0</version>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
Back to Top