Uses of Interface
org.apache.lucene.search.Matches
Packages that use Matches
-
Uses of Matches in org.apache.lucene.search
Classes in org.apache.lucene.search that implement MatchesModifier and TypeClassDescriptionclass
Utility class to help extract the set of sub queries that have matched from a larger query.Fields in org.apache.lucene.search declared as MatchesModifier and TypeFieldDescriptionstatic final Matches
MatchesUtils.MATCH_WITH_NO_TERMS
Indicates a match with no term positions, for example on a Point or DocValues field, or a field indexed as docs and freqs onlyMethods in org.apache.lucene.search that return MatchesModifier and TypeMethodDescriptionstatic Matches
MatchesUtils.forField
(String field, IOSupplier<MatchesIterator> mis) Create a Matches for a single fieldstatic Matches
MatchesUtils.fromSubMatches
(List<Matches> subMatches) Amalgamate a collection ofMatches
into a single objectDisjunctionMaxQuery.DisjunctionMaxWeight.matches
(LeafReaderContext context, int doc) FilterWeight.matches
(LeafReaderContext context, int doc) PhraseWeight.matches
(LeafReaderContext context, int doc) Weight.matches
(LeafReaderContext context, int doc) ReturnsMatches
for a specific document, ornull
if the document does not match the parent queryMethods in org.apache.lucene.search that return types with arguments of type MatchesModifier and TypeMethodDescriptionMatches.getSubMatches()
Returns a collection of Matches that make up this instance; if it is not a composite, then this returns an empty listNamedMatches.getSubMatches()
Methods in org.apache.lucene.search with parameters of type MatchesModifier and TypeMethodDescriptionstatic List
<NamedMatches> NamedMatches.findNamedMatches
(Matches matches) Finds allNamedMatches
in aMatches
treeMethod parameters in org.apache.lucene.search with type arguments of type MatchesModifier and TypeMethodDescriptionstatic Matches
MatchesUtils.fromSubMatches
(List<Matches> subMatches) Amalgamate a collection ofMatches
into a single objectConstructors in org.apache.lucene.search with parameters of type MatchesModifierConstructorDescriptionNamedMatches
(String name, Matches in) Wraps aMatches
object and associates a name with it