Uses of Class
de.cxp.ocs.smartsuggest.querysuggester.Suggestion
Packages that use Suggestion
Package
Description
-
Uses of Suggestion in de.cxp.ocs.smartsuggest.limiter
Methods in de.cxp.ocs.smartsuggest.limiter that return types with arguments of type SuggestionModifier and TypeMethodDescriptionConfigurableShareLimiter.limit
(List<Suggestion> suggestions, int limit) CutOffLimiter.limit
(List<Suggestion> suggestions, int limit) GroupedCutOffLimiter.limit
(List<Suggestion> suggestions, int limit) Limiter.limit
(List<Suggestion> suggestions, int limit) Method parameters in de.cxp.ocs.smartsuggest.limiter with type arguments of type SuggestionModifier and TypeMethodDescriptionConfigurableShareLimiter.limit
(List<Suggestion> suggestions, int limit) CutOffLimiter.limit
(List<Suggestion> suggestions, int limit) GroupedCutOffLimiter.limit
(List<Suggestion> suggestions, int limit) Limiter.limit
(List<Suggestion> suggestions, int limit) -
Uses of Suggestion in de.cxp.ocs.smartsuggest.querysuggester
Methods in de.cxp.ocs.smartsuggest.querysuggester that return types with arguments of type Suggestion -
Uses of Suggestion in de.cxp.ocs.smartsuggest.querysuggester.lucene
Methods in de.cxp.ocs.smartsuggest.querysuggester.lucene that return types with arguments of type Suggestion -
Uses of Suggestion in de.cxp.ocs.smartsuggest.util
Methods in de.cxp.ocs.smartsuggest.util that return types with arguments of type SuggestionModifier and TypeMethodDescriptionstatic Comparator
<Suggestion> Util.getCommonCharsComparator
(Locale locale, String term) Returns theComparator
that orders suggestion with according to their common chars to the given 'term'.static Comparator
<Suggestion> Util.getCommonPrefixComparator
(Locale locale, String term) Returns theComparator
that orders suggestion according to their common prefix to the given 'term'.static Comparator
<Suggestion> Util.getDefaultComparator
(Locale locale, String inputTerm) Retrieve comparator to order suggestions within a group: First prefer the ones with higher weight Then prefer the ones with more common chars with the input term Finally do natural sorting to get consistent orderingstatic Comparator
<Suggestion> Returns theComparator
used to sort suggestions by their weight, where queries of the group "sharpened matches" are preferred over all others (=max weight).static Comparator
<Suggestion> Util.getFuzzySuggestionsComparator
(Locale locale, String inputTerm) Retrieve comparator to optimally order fuzzy suggestions: First prefer the ones with more common prefix with the input term Then prefer the ones with more common chars with the input term Then prefer the ones with higher weight Finally do natural sorting to get consistent ordering