Uses of Interface
org.eclipse.jface.text.MultiStringMatcher.Match
Packages that use MultiStringMatcher.Match
Package
Description
Provides a framework for creating and manipulating text documents.
-
Uses of MultiStringMatcher.Match in org.eclipse.jface.text
Methods in org.eclipse.jface.text that return MultiStringMatcher.MatchModifier and TypeMethodDescriptionMultiStringMatcher.indexOf
(CharSequence text, int offset) Find the next occurrence of any of the search strings of theMultiStringMatcher
in the giventext
starting at the givenoffset
.static MultiStringMatcher.Match
MultiStringMatcher.indexOf
(CharSequence text, int offset, String... searchStrings) Finds the leftmost longest occurrence of any of the givensearchStrings
in thetext
starting at the givenoffset
.Methods in org.eclipse.jface.text that return types with arguments of type MultiStringMatcher.MatchModifier and TypeMethodDescriptionMultiStringMatcher.find
(CharSequence text, int offset) Finds all occurrences of any of the search strings of theMultiStringMatcher
in the giventext
starting at the givenoffset
, including overlapping occurrences.Method parameters in org.eclipse.jface.text with type arguments of type MultiStringMatcher.MatchModifier and TypeMethodDescriptionvoid
MultiStringMatcher.find
(CharSequence text, int offset, Consumer<MultiStringMatcher.Match> matches) Finds all occurrences of any of the search strings of theMultiStringMatcher
in the giventext
starting at the givenoffset
, including overlapping occurrences.