Uses of Class
org.codelibs.fess.dict.mapping.CharMappingItem
Packages that use CharMappingItem
Package
Description
-
Uses of CharMappingItem in org.codelibs.fess.app.service
Methods in org.codelibs.fess.app.service that return types with arguments of type CharMappingItemModifier and TypeMethodDescriptionorg.dbflute.optional.OptionalEntity<CharMappingItem> CharMappingService.getCharMappingItem(String dictId, long id) Retrieves a specific character mapping item by its ID from the specified dictionary.CharMappingService.getCharMappingList(String dictId, CharMappingPager charMappingPager) Retrieves a paginated list of character mapping items from the specified dictionary.Methods in org.codelibs.fess.app.service with parameters of type CharMappingItemModifier and TypeMethodDescriptionvoidCharMappingService.delete(String dictId, CharMappingItem charMappingItem) Deletes a character mapping item from the specified dictionary.voidCharMappingService.store(String dictId, CharMappingItem charMappingItem) Stores a character mapping item in the specified dictionary. -
Uses of CharMappingItem in org.codelibs.fess.app.web.admin.dict.mapping
Methods in org.codelibs.fess.app.web.admin.dict.mapping that return types with arguments of type CharMappingItemModifier and TypeMethodDescriptionprotected org.dbflute.optional.OptionalEntity<CharMappingItem> AdminDictMappingAction.createCharMappingItem(CreateForm form, org.lastaflute.web.validation.VaErrorHook hook) Create a char mapping item.static org.dbflute.optional.OptionalEntity<CharMappingItem> AdminDictMappingAction.createCharMappingItem(FessBaseAction action, CreateForm form, org.lastaflute.web.validation.VaErrorHook hook) Create a char mapping item. -
Uses of CharMappingItem in org.codelibs.fess.app.web.api.admin.dict.mapping
Methods in org.codelibs.fess.app.web.api.admin.dict.mapping with parameters of type CharMappingItemModifier and TypeMethodDescriptionprotected EditBodyApiAdminDictMappingAction.createEditBody(CharMappingItem entity, String dictId) Create an EditBody DTO from a CharMappingItem entity. -
Uses of CharMappingItem in org.codelibs.fess.dict.mapping
Fields in org.codelibs.fess.dict.mapping declared as CharMappingItemModifier and TypeFieldDescriptionprotected CharMappingItemCharMappingFile.MappingUpdater.itemThe mapping item being updated, or null for read-only operations.Methods in org.codelibs.fess.dict.mapping that return CharMappingItemModifier and TypeMethodDescriptionCharMappingFile.MappingUpdater.commit()Commits any pending changes and marks the updater for final write.CharMappingFile.MappingUpdater.write(CharMappingItem oldItem) Writes a character mapping item to the temporary file.Methods in org.codelibs.fess.dict.mapping that return types with arguments of type CharMappingItemModifier and TypeMethodDescriptionorg.dbflute.optional.OptionalEntity<CharMappingItem> CharMappingFile.get(long id) Retrieves a character mapping item by its ID.CharMappingFile.selectList(int offset, int size) Retrieves a paginated list of character mapping items.Methods in org.codelibs.fess.dict.mapping with parameters of type CharMappingItemModifier and TypeMethodDescriptionvoidCharMappingFile.delete(CharMappingItem item) Deletes a character mapping item from the dictionary file.voidCharMappingFile.insert(CharMappingItem item) Inserts a new character mapping item into the dictionary file.voidCharMappingFile.update(CharMappingItem item) Updates an existing character mapping item in the dictionary file.CharMappingFile.MappingUpdater.write(CharMappingItem oldItem) Writes a character mapping item to the temporary file.Constructors in org.codelibs.fess.dict.mapping with parameters of type CharMappingItemModifierConstructorDescriptionprotectedMappingUpdater(CharMappingItem newItem) Constructs a new MappingUpdater for handling file updates.