- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for dictionaries (0.61 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryItem.java
*/ package org.codelibs.fess.dict; /** * Abstract base class for all dictionary items in the Fess search system. * Dictionary items are used to store entries in various dictionaries such as * synonyms, kuromoji, protwords, and stopwords dictionaries. * */ public abstract class DictionaryItem { /** The unique identifier for this dictionary item */ protected long id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/DownloadBody.java
/** * Download body for stemmer override dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading stemmer override dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java
/** * Form for uploading Kuromoji dictionary files to the Fess search engine. * Kuromoji is a Japanese morphological analyzer used for tokenizing Japanese text. * This form is used in the admin interface to upload custom user dictionaries for Kuromoji. */ public class UploadForm { /** * The dictionary ID that identifies which Kuromoji dictionary configuration to update.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
import jakarta.annotation.Resource; /** * Service class for managing stemmer override dictionary operations. * * This service provides functionality for CRUD operations on stemmer override * dictionaries. Stemmer override dictionaries allow administrators to define * custom stemming rules that override the default stemming behavior for * specific terms, improving search accuracy for domain-specific vocabularies. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/DownloadBody.java
import org.codelibs.fess.app.web.admin.dict.kuromoji.DownloadForm; /** * Download body for Kuromoji dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading Kuromoji dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java
/** * Download body for protected words dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading protected words dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/DownloadBody.java
/** * Download body for stop words dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading stop words dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java
*/ package org.codelibs.fess.app.web.api.admin.dict; import java.util.Date; import org.codelibs.fess.app.web.admin.dict.ListForm; /** * The request body for listing dictionaries. */ public class ListBody extends ListForm { /** * Default constructor. */ public ListBody() { super(); } /** The ID of the dictionary. */ public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java
import org.codelibs.fess.app.web.admin.dict.synonym.DownloadForm; /** * Download body for synonym dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading synonym dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/EditForm.java
/** * Form class for editing mapping dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing mapping dictionary entries. * Mapping dictionaries define field mappings and transformations during the indexing process. * */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)