- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getFileExtension (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/job/IndexExportFormatter.java
public interface IndexExportFormatter { /** * Returns the file extension for this format (e.g. ".html", ".json"). * * @return the file extension including the leading dot */ String getFileExtension(); /** * Returns the default index file name for this format (e.g. "index.html", "index.json"). * * @return the index file name */ String getIndexFileName(); /**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) -
src/main/java/org/codelibs/fess/job/HtmlIndexExportFormatter.java
/** * Creates a new HtmlIndexExportFormatter instance. */ public HtmlIndexExportFormatter() { // default constructor } @Override public String getFileExtension() { return ".html"; } @Override public String getIndexFileName() { return "index.html"; } @OverrideCreated: 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
/** * Creates a new JsonIndexExportFormatter instance. */ public JsonIndexExportFormatter() { // default constructor } @Override public String getFileExtension() { return ".json"; } @Override public String getIndexFileName() { return "index.json"; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 07 10:31:36 GMT 2026 - 4.3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java
* The checksum extension SHOULD NOT contain dot (".") character. * Example: "sha1". */ @Nonnull String getFileExtension(); /** * Each invocation of this method returns a new instance of calculator, never {@code null} value. */ @Nonnull ChecksumCalculator getCalculator(); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 10 20:52:34 GMT 2024 - 6.4K bytes - Click Count (0)