Uses of Class
io.keikai.range.impl.FindOptions
Packages that use FindOptions
Package
Description
Keikai Spreadsheet Internal Range API classes.
Keikai Spreadsheet Internal Range API Implementation classes.
-
Uses of FindOptions in io.keikai.range
Methods in io.keikai.range with parameters of type FindOptionsModifier and TypeMethodDescriptionSRange.find(String searchText, FindOptions options) Finds the next cell matching the search text, starting after the top-left cell of this range.SRange.findAll(String searchText, FindOptions options) Finds all cells matching the search text in this range's sheet (or workbook, depending on options).intSRange.replaceAll(String searchText, String replacement, FindOptions options) Replaces all occurrences of the search text with the replacement text. -
Uses of FindOptions in io.keikai.range.impl
Methods in io.keikai.range.impl that return FindOptionsModifier and TypeMethodDescriptionstatic FindOptionsFindOptions.defaults()Creates a new FindOptions with default settings.FindOptions.direction(FindOptions.SearchDirection dir) Sets the search direction.FindOptions.lookIn(FindOptions.LookIn lookIn) Sets which aspect of the cell to search in.FindOptions.matchCase(boolean mc) Sets whether the search is case-sensitive.FindOptions.matchEntireCell(boolean mec) Sets whether to match the entire cell content.FindOptions.scope(FindOptions.SearchScope scope) Sets the search scope.FindOptions.useRegex(boolean regex) Sets whether to use regex for matching.Methods in io.keikai.range.impl with parameters of type FindOptionsModifier and TypeMethodDescriptionFindReplaceHelper.find(SSheet sheet, String searchText, FindOptions options, int startRow, int startCol) Finds the next cell matching the search text, starting after the given position.RangeImpl.find(String searchText, FindOptions options) FindReplaceHelper.findAll(SSheet sheet, String searchText, FindOptions options) Finds all cells matching the search text in the given sheet.RangeImpl.findAll(String searchText, FindOptions options) intFindReplaceHelper.replace(SSheet sheet, String searchText, String replacement, FindOptions options) Replaces all occurrences of the search text with the replacement in the given sheet.intRangeImpl.replaceAll(String searchText, String replacement, FindOptions options)