Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for selectlist (0.89 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsJobLogBhv.java

            return JobLog.class;
        }
    
        @Override
        protected Class<JobLogCB> typeOfHandlingConditionBean() {
            return JobLogCB.class;
        }
    
        public ListResultBean<JobLog> selectList(CBCall<JobLogCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<JobLog> selectPage(CBCall<JobLogCB> cbLambda) {
            // #pending same?
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

         *
         * @param offset the starting offset for pagination
         * @param size the number of items to retrieve
         * @return a paginated list of dictionary items
         */
        public abstract PagingList<T> selectList(int offset, int size);
    
        /**
         * Retrieves a dictionary item by its ID.
         *
         * @param id the item ID
         * @return an optional containing the item if found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                    return OptionalEntity.of(StopwordsItem);
                }
            }
            return OptionalEntity.empty();
        }
    
        @Override
        public synchronized PagingList<StopwordsItem> selectList(final int offset, final int size) {
            if (stopwordsItemList == null) {
                reload(null);
            }
    
            if (offset >= stopwordsItemList.size() || offset < 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsDataConfigBhv.java

            return DataConfig.class;
        }
    
        @Override
        protected Class<DataConfigCB> typeOfHandlingConditionBean() {
            return DataConfigCB.class;
        }
    
        public ListResultBean<DataConfig> selectList(CBCall<DataConfigCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<DataConfig> selectPage(CBCall<DataConfigCB> cbLambda) {
            // #pending same?
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsLabelTypeBhv.java

            return LabelType.class;
        }
    
        @Override
        protected Class<LabelTypeCB> typeOfHandlingConditionBean() {
            return LabelTypeCB.class;
        }
    
        public ListResultBean<LabelType> selectList(CBCall<LabelTypeCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<LabelType> selectPage(CBCall<LabelTypeCB> cbLambda) {
            // #pending same?
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

         *
         * @return A list of KeyMatch instances.
         */
        public List<KeyMatch> getAvailableKeyMatchList() {
            return ComponentUtil.getComponent(KeyMatchBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageKeymatchMaxFetchSizeAsInteger());
            });
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebConfigBhv.java

            return WebConfig.class;
        }
    
        @Override
        protected Class<WebConfigCB> typeOfHandlingConditionBean() {
            return WebConfigCB.class;
        }
    
        public ListResultBean<WebConfig> selectList(CBCall<WebConfigCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<WebConfig> selectPage(CBCall<WebConfigCB> cbLambda) {
            // #pending same?
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

         * @return List of boost document rules that are currently available
         */
        protected List<BoostDocumentRule> getAvailableBoostDocumentRuleList() {
            return ComponentUtil.getComponent(BoostDocumentRuleBhv.class).selectList(cb -> {
                cb.query().matchAll();
                cb.query().addOrderBy_SortOrder_Asc();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageDocboostMaxFetchSizeAsInteger());
            });
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                    return OptionalEntity.of(stemmerOverrideItem);
                }
            }
            return OptionalEntity.empty();
        }
    
        @Override
        public synchronized PagingList<StemmerOverrideItem> selectList(final int offset, final int size) {
            if (stemmerOverrideItemList == null) {
                reload(null);
            }
    
            if (offset >= stemmerOverrideItemList.size() || offset < 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                    return OptionalEntity.of(synonymItem);
                }
            }
            return OptionalEntity.empty();
        }
    
        @Override
        public synchronized PagingList<SynonymItem> selectList(final int offset, final int size) {
            if (synonymItemList == null) {
                reload(null);
            }
    
            if (offset >= synonymItemList.size() || offset < 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.5K bytes
    - Viewed (0)
Back to top