- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getIndexFileName (0.07 seconds)
-
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 outputCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 07 10:31:36 GMT 2026 - 1.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/HtmlIndexExportFormatter.java
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) -
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)