Uses of Interface
org.apache.lucene.search.Matches
-
Packages that use Matches Package Description org.apache.lucene.queries.function Queries that compute score based upon a function.org.apache.lucene.queries.intervals Intervals queriesorg.apache.lucene.search Code to search indices.org.apache.lucene.search.join Support for index-time and query-time joins.org.apache.lucene.search.spans The calculus of spans. -
-
Uses of Matches in org.apache.lucene.queries.function
Methods in org.apache.lucene.queries.function that return Matches Modifier and Type Method Description MatchesFunctionScoreQuery.FunctionScoreWeight. matches(LeafReaderContext context, int doc) -
Uses of Matches in org.apache.lucene.queries.intervals
Methods in org.apache.lucene.queries.intervals that return Matches Modifier and Type Method Description MatchesIntervalQuery.IntervalWeight. matches(LeafReaderContext context, int doc) -
Uses of Matches in org.apache.lucene.search
Classes in org.apache.lucene.search that implement Matches Modifier and Type Class Description classNamedMatchesUtility class to help extract the set of sub queries that have matched from a larger query.Fields in org.apache.lucene.search declared as Matches Modifier and Type Field Description private MatchesNamedMatches. instatic MatchesMatchesUtils. MATCH_WITH_NO_TERMSIndicates 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 Matches Modifier and Type Method Description static MatchesMatchesUtils. forField(java.lang.String field, IOSupplier<MatchesIterator> mis)Create a Matches for a single fieldstatic MatchesMatchesUtils. fromSubMatches(java.util.List<Matches> subMatches)Amalgamate a collection ofMatchesinto a single objectMatchesBM25FQuery.BM25FWeight. matches(LeafReaderContext context, int doc)MatchesBooleanWeight. matches(LeafReaderContext context, int doc)MatchesCoveringQuery.CoveringWeight. matches(LeafReaderContext context, int doc)MatchesDisjunctionMaxQuery.DisjunctionMaxWeight. matches(LeafReaderContext context, int doc)MatchesFilterWeight. matches(LeafReaderContext context, int doc)MatchesLRUQueryCache.CachingWrapperWeight. matches(LeafReaderContext context, int doc)MatchesPhraseWeight. matches(LeafReaderContext context, int doc)MatchesSynonymQuery.SynonymWeight. matches(LeafReaderContext context, int doc)MatchesTermQuery.TermWeight. matches(LeafReaderContext context, int doc)MatchesWeight. matches(LeafReaderContext context, int doc)ReturnsMatchesfor a specific document, ornullif the document does not match the parent query A query match that contains no position information (for example, a Point or DocValues query) will returnMatchesUtils.MATCH_WITH_NO_TERMSMethods in org.apache.lucene.search that return types with arguments of type Matches Modifier and Type Method Description java.util.Collection<Matches>Matches. getSubMatches()Returns a collection of Matches that make up this instance; if it is not a composite, then this returns an empty listjava.util.Collection<Matches>NamedMatches. getSubMatches()Methods in org.apache.lucene.search with parameters of type Matches Modifier and Type Method Description static java.util.List<NamedMatches>NamedMatches. findNamedMatches(Matches matches)Finds allNamedMatchesin aMatchestreeMethod parameters in org.apache.lucene.search with type arguments of type Matches Modifier and Type Method Description static MatchesMatchesUtils. fromSubMatches(java.util.List<Matches> subMatches)Amalgamate a collection ofMatchesinto a single objectConstructors in org.apache.lucene.search with parameters of type Matches Constructor Description NamedMatches(java.lang.String name, Matches in)Wraps aMatchesobject and associates a name with it -
Uses of Matches in org.apache.lucene.search.join
Methods in org.apache.lucene.search.join that return Matches Modifier and Type Method Description MatchesToParentBlockJoinQuery.BlockJoinWeight. matches(LeafReaderContext context, int doc) -
Uses of Matches in org.apache.lucene.search.spans
Methods in org.apache.lucene.search.spans that return Matches Modifier and Type Method Description MatchesSpanWeight. matches(LeafReaderContext context, int doc)
-