Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStopwordsList (0.08 sec)

  1. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

         *
         * @param dictId         The ID of the dictionary.
         * @param stopwordsPager The pager for controlling pagination.
         * @return A list of stopwords.
         */
        public List<StopwordsItem> getStopwordsList(final String dictId, final StopwordsPager stopwordsPager) {
            return getStopwordsFile(dictId).map(file -> {
                final int pageSize = stopwordsPager.getPageSize();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

            validateApi(body, messages -> {});
            final StopwordsPager pager = copyBeanToNewBean(body, StopwordsPager.class);
            return asJson(new ApiResult.ApiConfigsResponse<EditBody>().settings(stopwordsService.getStopwordsList(body.dictId, pager)
                    .stream()
                    .map(stopwordsItem -> createEditBody(stopwordsItem, dictId))
                    .collect(Collectors.toList())).status(ApiResult.Status.OK).result());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top