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 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.MatchModifier and TypeMethodDescriptionMultiStringMatcher.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.MatchModifier and TypeMethodDescriptionvoidMultiStringMatcher.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.