Uses of Interface
org.eclipse.jface.text.MultiStringMatcher.Match
Package
Description
Provides a framework for creating and manipulating text documents.
-
Uses of MultiStringMatcher.Match in org.eclipse.jface.text
Modifier 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
.Modifier 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.Modifier 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.