Uses of Interface
net.sourceforge.pmd.util.fxdesigner.util.autocomplete.matchers.MatchSelector
-
Packages that use MatchSelector Package Description net.sourceforge.pmd.util.fxdesigner.util.autocomplete.matchers -
-
Uses of MatchSelector in net.sourceforge.pmd.util.fxdesigner.util.autocomplete.matchers
Methods in net.sourceforge.pmd.util.fxdesigner.util.autocomplete.matchers that return MatchSelector Modifier and Type Method Description static <T> MatchSelector<T>CamelCaseMatcher. allQueryStarts()Scans several times from left to right, once for each of the possible match starts, and keeps the best result.default MatchSelector<T>MatchSelector. andThen(MatchSelector<T> next)static <T> MatchSelector<T>MatchSelector. limitToBest(int limit)Limits results to a the best maximum size.static <T> MatchSelector<T>CamelCaseMatcher. onlyWordStarts()Breaks some ties, by only matching the input words.static <T> MatchSelector<T>MatchSelector. selectBestTies()Selects all the results that matched the highest score, preserving all tied best results.static <T> MatchSelector<T>CamelCaseMatcher. sparseCamelMatcher()Scans once left-to-right from the start, picking up on any character in scan order.Methods in net.sourceforge.pmd.util.fxdesigner.util.autocomplete.matchers with parameters of type MatchSelector Modifier and Type Method Description default MatchSelector<T>MatchSelector. andThen(MatchSelector<T> next)static <T> java.util.stream.Stream<MatchResult<T>>StringMatchUtil. filterResults(java.util.List<? extends T> candidates, java.util.function.Function<? super T,java.lang.String> matchExtractor, java.lang.String query, MatchSelector<T> limiter)Selects the bestMatchResultgiven a list of candidates and a query.
-