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.queries.spans The calculus of spans.org.apache.lucene.sandbox.search This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial queries.org.apache.lucene.search Code to search indices.org.apache.lucene.search.join Support for index-time and query-time joins. -
-
Uses of Matches in org.apache.lucene.queries.function
Methods in org.apache.lucene.queries.function that return Matches Modifier and Type Method Description Matches
FunctionScoreQuery.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 Matches
IntervalQuery.IntervalWeight. matches(LeafReaderContext context, int doc)
-
Uses of Matches in org.apache.lucene.queries.spans
Methods in org.apache.lucene.queries.spans that return Matches Modifier and Type Method Description Matches
SpanWeight. matches(LeafReaderContext context, int doc)
-
Uses of Matches in org.apache.lucene.sandbox.search
Methods in org.apache.lucene.sandbox.search that return Matches Modifier and Type Method Description Matches
CombinedFieldQuery.CombinedFieldWeight. matches(LeafReaderContext context, int doc)
Matches
CoveringQuery.CoveringWeight. 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 class
NamedMatches
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 Matches Modifier and Type Field Description private Matches
NamedMatches. in
static 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 Matches Modifier and Type Method Description static Matches
MatchesUtils. forField(java.lang.String field, IOSupplier<MatchesIterator> mis)
Create a Matches for a single fieldstatic Matches
MatchesUtils. fromSubMatches(java.util.List<Matches> subMatches)
Amalgamate a collection ofMatches
into a single objectMatches
AbstractMultiTermQueryConstantScoreWrapper.RewritingWeight. matches(LeafReaderContext context, int doc)
Matches
BooleanWeight. matches(LeafReaderContext context, int doc)
Matches
DisjunctionMaxQuery.DisjunctionMaxWeight. matches(LeafReaderContext context, int doc)
Matches
FilterWeight. matches(LeafReaderContext context, int doc)
Matches
LRUQueryCache.CachingWrapperWeight. matches(LeafReaderContext context, int doc)
Matches
PhraseWeight. matches(LeafReaderContext context, int doc)
Matches
SynonymQuery.SynonymWeight. matches(LeafReaderContext context, int doc)
Matches
TermQuery.TermWeight. matches(LeafReaderContext context, int doc)
Matches
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 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 allNamedMatches
in aMatches
treeMethod parameters in org.apache.lucene.search with type arguments of type Matches Modifier and Type Method Description static Matches
MatchesUtils. fromSubMatches(java.util.List<Matches> subMatches)
Amalgamate a collection ofMatches
into a single objectConstructors in org.apache.lucene.search with parameters of type Matches Constructor Description NamedMatches(java.lang.String name, Matches in)
Wraps aMatches
object 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 Matches
ToParentBlockJoinQuery.BlockJoinWeight. matches(LeafReaderContext context, int doc)
-