Uses of Class
org.apache.lucene.search.Scorer
-
Packages that use Scorer Package Description org.apache.lucene.facet.search Faceted Search APIorg.apache.lucene.search Code to search indices.org.apache.lucene.search.grouping This module enables search result grouping with Lucene, where hits with the same value in the specified single-valued group field are grouped together.org.apache.lucene.search.join This modules support index-time and query-time joins.org.apache.lucene.search.payloads The payloads package provides Query mechanisms for finding and using payloads.org.apache.lucene.search.spans The calculus of spans.org.apache.lucene.util Some utility classes. -
-
Uses of Scorer in org.apache.lucene.facet.search
Methods in org.apache.lucene.facet.search with parameters of type Scorer Modifier and Type Method Description voidFacetsCollector. setScorer(Scorer scorer) -
Uses of Scorer in org.apache.lucene.search
Classes in org.apache.lucene.search with type parameters of type Scorer Modifier and Type Class Description static classScorer.ScorerVisitor<P extends Query,C extends Query,S extends Scorer>A callback to gather information from a scorer and its sub-scorers.Subclasses of Scorer in org.apache.lucene.search Modifier and Type Class Description protected classConstantScoreQuery.ConstantScorerclassScoreCachingWrappingScorerAScorerwhich wraps another scorer and caches the score of the current document.Methods in org.apache.lucene.search that return Scorer Modifier and Type Method Description ScorerBooleanQuery.BooleanWeight. scorer(IndexReader reader, boolean scoreDocsInOrder, boolean topScorer)ScorerConstantScoreQuery.ConstantWeight. scorer(IndexReader reader, boolean scoreDocsInOrder, boolean topScorer)ScorerDisjunctionMaxQuery.DisjunctionMaxWeight. scorer(IndexReader reader, boolean scoreDocsInOrder, boolean topScorer)Create the scorer used to score our associated DisjunctionMaxQueryabstract ScorerWeight. scorer(IndexReader reader, boolean scoreDocsInOrder, boolean topScorer)Returns aScorerwhich scores documents in/out-of order according toscoreDocsInOrder.Methods in org.apache.lucene.search with parameters of type Scorer Modifier and Type Method Description voidCheckHits.ExplanationAsserter. setScorer(Scorer scorer)voidCheckHits.SetCollector. setScorer(Scorer scorer)abstract voidCollector. setScorer(Scorer scorer)Called before successive calls toCollector.collect(int).voidFieldComparator.RelevanceComparator. setScorer(Scorer scorer)voidFieldComparator. setScorer(Scorer scorer)Sets the Scorer to use in case a document's score is needed.voidMultiCollector. setScorer(Scorer s)voidPositiveScoresOnlyCollector. setScorer(Scorer scorer)voidTimeLimitingCollector. setScorer(Scorer scorer)voidTopScoreDocCollector. setScorer(Scorer scorer)voidTotalHitCountCollector. setScorer(Scorer scorer)Method parameters in org.apache.lucene.search with type arguments of type Scorer Modifier and Type Method Description voidScorer. visitScorers(Scorer.ScorerVisitor<Query,Query,Scorer> visitor)Expert: call this to gather details for all sub-scorers for this query.voidScorer. visitSubScorers(Query parent, BooleanClause.Occur relationship, Scorer.ScorerVisitor<Query,Query,Scorer> visitor)Scorersubclasses should implement this method if the subclass itself contains multiple scorers to support gathering details for sub-scorers viaScorer.ScorerVisitorConstructors in org.apache.lucene.search with parameters of type Scorer Constructor Description ScoreCachingWrappingScorer(Scorer scorer)Creates a new instance by wrapping the given scorer. -
Uses of Scorer in org.apache.lucene.search.grouping
Methods in org.apache.lucene.search.grouping with parameters of type Scorer Modifier and Type Method Description voidAbstractAllGroupsCollector. setScorer(Scorer scorer)voidAbstractFirstPassGroupingCollector. setScorer(Scorer scorer)voidAbstractSecondPassGroupingCollector. setScorer(Scorer scorer)voidBlockGroupingCollector. setScorer(Scorer scorer) -
Uses of Scorer in org.apache.lucene.search.join
Methods in org.apache.lucene.search.join with parameters of type Scorer Modifier and Type Method Description voidToParentBlockJoinCollector. setScorer(Scorer scorer) -
Uses of Scorer in org.apache.lucene.search.payloads
Subclasses of Scorer in org.apache.lucene.search.payloads Modifier and Type Class Description classPayloadNearQuery.PayloadNearSpanScorerprotected classPayloadTermQuery.PayloadTermWeight.PayloadTermSpanScorerMethods in org.apache.lucene.search.payloads that return Scorer Modifier and Type Method Description ScorerPayloadNearQuery.PayloadNearSpanWeight. scorer(IndexReader reader, boolean scoreDocsInOrder, boolean topScorer)ScorerPayloadTermQuery.PayloadTermWeight. scorer(IndexReader reader, boolean scoreDocsInOrder, boolean topScorer) -
Uses of Scorer in org.apache.lucene.search.spans
Subclasses of Scorer in org.apache.lucene.search.spans Modifier and Type Class Description classSpanScorerPublic for extension only.Methods in org.apache.lucene.search.spans that return Scorer Modifier and Type Method Description ScorerSpanWeight. scorer(IndexReader reader, boolean scoreDocsInOrder, boolean topScorer) -
Uses of Scorer in org.apache.lucene.util
Methods in org.apache.lucene.util that return Scorer Modifier and Type Method Description ScorerScorerDocQueue. pop()Deprecated.Removes and returns the least scorer of the ScorerDocQueue in log(size) time.ScorerScorerDocQueue. top()Deprecated.Returns the least Scorer of the ScorerDocQueue in constant time.Methods in org.apache.lucene.util with parameters of type Scorer Modifier and Type Method Description booleanScorerDocQueue. insert(Scorer scorer)Deprecated.Adds a Scorer to the ScorerDocQueue in log(size) time if either the ScorerDocQueue is not full, or not lessThan(scorer, top()).voidScorerDocQueue. put(Scorer scorer)Deprecated.Adds a Scorer to a ScorerDocQueue in log(size) time.
-