Uses of Class
org.codelibs.fess.dict.stopwords.StopwordsItem
Packages that use StopwordsItem
Package
Description
-
Uses of StopwordsItem in org.codelibs.fess.app.service
Methods in org.codelibs.fess.app.service that return types with arguments of type StopwordsItemModifier and TypeMethodDescriptionorg.dbflute.optional.OptionalEntity<StopwordsItem> StopwordsService.getStopwordsItem(String dictId, long id) Retrieves a specific stopword item by its ID.StopwordsService.getStopwordsList(String dictId, StopwordsPager stopwordsPager) Retrieves a list of stopwords for a given dictionary and pager.Methods in org.codelibs.fess.app.service with parameters of type StopwordsItemModifier and TypeMethodDescriptionvoidStopwordsService.delete(String dictId, StopwordsItem stopwordsItem) Deletes a stopword item from the specified dictionary.voidStopwordsService.store(String dictId, StopwordsItem stopwordsItem) Stores a stopword item in the specified dictionary. -
Uses of StopwordsItem in org.codelibs.fess.app.web.admin.dict.stopwords
Methods in org.codelibs.fess.app.web.admin.dict.stopwords that return types with arguments of type StopwordsItemModifier and TypeMethodDescriptionstatic org.dbflute.optional.OptionalEntity<StopwordsItem> AdminDictStopwordsAction.createStopwordsItem(CreateForm form, org.lastaflute.web.validation.VaErrorHook hook) Create a StopwordsItem from the form data. -
Uses of StopwordsItem in org.codelibs.fess.app.web.api.admin.dict.stopwords
Methods in org.codelibs.fess.app.web.api.admin.dict.stopwords with parameters of type StopwordsItemModifier and TypeMethodDescriptionprotected EditBodyApiAdminDictStopwordsAction.createEditBody(StopwordsItem entity, String dictId) Creates an EditBody from a StopwordsItem entity for API responses. -
Uses of StopwordsItem in org.codelibs.fess.dict.stopwords
Fields in org.codelibs.fess.dict.stopwords declared as StopwordsItemModifier and TypeFieldDescriptionprotected StopwordsItemStopwordsFile.StopwordsUpdater.itemThe stopword item being added or updated.Methods in org.codelibs.fess.dict.stopwords that return StopwordsItemModifier and TypeMethodDescriptionStopwordsFile.StopwordsUpdater.commit()Commits the changes to the dictionary file.StopwordsFile.StopwordsUpdater.write(StopwordsItem oldItem) Writes a stopword item to the temporary file.Methods in org.codelibs.fess.dict.stopwords that return types with arguments of type StopwordsItemModifier and TypeMethodDescriptionorg.dbflute.optional.OptionalEntity<StopwordsItem> StopwordsFile.get(long id) StopwordsFile.selectList(int offset, int size) Methods in org.codelibs.fess.dict.stopwords with parameters of type StopwordsItemModifier and TypeMethodDescriptionvoidStopwordsFile.delete(StopwordsItem item) voidStopwordsFile.insert(StopwordsItem item) voidStopwordsFile.update(StopwordsItem item) StopwordsFile.StopwordsUpdater.write(StopwordsItem oldItem) Writes a stopword item to the temporary file.Constructors in org.codelibs.fess.dict.stopwords with parameters of type StopwordsItemModifierConstructorDescriptionprotectedStopwordsUpdater(StopwordsItem newItem) Constructs a new updater for a stopword item.