- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 190 for dictId (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/SearchForm.java
} /** * The dictionary ID field for protected words dictionary operations. */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/DownloadForm.java
public class DownloadForm { /** * Dictionary ID for identifying the Kuromoji dictionary to download. */ @Required public String dictId; /** * Default constructor. */ public DownloadForm() { // Use of default constructor }
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/SearchForm.java
} /** * The dictionary ID field for Kuromoji dictionary operations. */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1010 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/SearchForm.java
public SearchForm() { } /** * The dictionary ID field for stemmer override dictionary operations. */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/SearchForm.java
} /** * The dictionary ID field for synonym dictionary operations. */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1007 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/DownloadForm.java
*/ public class DownloadForm { /** * Dictionary ID for identifying the protected words dictionary to download. */ @Required public String dictId; /** * Default constructor. */ public DownloadForm() { // Use of default constructor }
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/BaseSearchDictBody.java
*/ public class BaseSearchDictBody extends BaseSearchBody { /** The dictionary ID for the search operation. */ @Required public String dictId; /** * Default constructor for BaseSearchDictBody. */ public BaseSearchDictBody() { super(); }
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/admin/dict/mapping/EditForm.java
* This method creates a composite identifier for UI display purposes. * * @return A string in the format "dictId:id" for display purposes */ public String getDisplayId() { return dictId + ":" + id; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/UploadForm.java
* This ID corresponds to a specific character mapping dictionary instance in the system. */ @Required public String dictId; /** * The multipart file containing the character mapping rules to be uploaded. * This file should contain character mapping definitions for text normalization. */ @Required
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/web/admin/dict/synonym/EditForm.java
* This method creates a composite identifier for UI display purposes. * * @return A string in the format "dictId:id" for display purposes */ public String getDisplayId() { return dictId + ":" + id; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)