Package org.apache.lucene.search
Class ConstantScoreWeight
- java.lang.Object
-
- org.apache.lucene.search.Weight
-
- org.apache.lucene.search.ConstantScoreWeight
-
- All Implemented Interfaces:
SegmentCacheable
- Direct Known Subclasses:
GlobalOrdinalsQuery.W,LRUQueryCache.CachingWrapperWeight
public abstract class ConstantScoreWeight extends Weight
A Weight that has a constant score equal to the boost of the wrapped query. This is typically useful when building queries which do not produce meaningful scores and are mostly useful for filtering.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.search.Weight
Weight.DefaultBulkScorer
-
-
Field Summary
Fields Modifier and Type Field Description private floatscore-
Fields inherited from class org.apache.lucene.search.Weight
parentQuery
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedConstantScoreWeight(Query query, float score)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Explanationexplain(LeafReaderContext context, int doc)An explanation of the score computation for the named document.protected floatscore()Return the score produced by thisWeight.-
Methods inherited from class org.apache.lucene.search.Weight
bulkScorer, count, getQuery, matches, scorer, scorerSupplier
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.lucene.search.SegmentCacheable
isCacheable
-
-
-
-
Constructor Detail
-
ConstantScoreWeight
protected ConstantScoreWeight(Query query, float score)
-
-
Method Detail
-
score
protected final float score()
Return the score produced by thisWeight.
-
explain
public Explanation explain(LeafReaderContext context, int doc) throws java.io.IOException
Description copied from class:WeightAn explanation of the score computation for the named document.- Specified by:
explainin classWeight- Parameters:
context- the readers context to create theExplanationfor.doc- the document's id relative to the given context's reader- Returns:
- an Explanation for the score
- Throws:
java.io.IOException- if anIOExceptionoccurs
-
-