Uses of Interface
org.eclipse.jface.text.MultiStringMatcher.Match
-
Packages that use MultiStringMatcher.Match Package Description org.eclipse.jface.text 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.Match Modifier and Type Method Description MultiStringMatcher.MatchMultiStringMatcher. indexOf(CharSequence text, int offset)Find the next occurrence of any of the search strings of theMultiStringMatcherin the giventextstarting at the givenoffset.static MultiStringMatcher.MatchMultiStringMatcher. indexOf(CharSequence text, int offset, String... searchStrings)Finds the leftmost longest occurrence of any of the givensearchStringsin thetextstarting at the givenoffset.Methods in org.eclipse.jface.text that return types with arguments of type MultiStringMatcher.Match Modifier and Type Method Description List<MultiStringMatcher.Match>MultiStringMatcher. find(CharSequence text, int offset)Finds all occurrences of any of the search strings of theMultiStringMatcherin the giventextstarting at the givenoffset, including overlapping occurrences.Method parameters in org.eclipse.jface.text with type arguments of type MultiStringMatcher.Match Modifier and Type Method Description voidMultiStringMatcher. find(CharSequence text, int offset, Consumer<MultiStringMatcher.Match> matches)Finds all occurrences of any of the search strings of theMultiStringMatcherin the giventextstarting at the givenoffset, including overlapping occurrences.
-