public class CustomScoreQuery extends Query
FieldScoreQuery
getCustomScoreProvider(org.apache.lucene.index.IndexReader)
.Constructor and Description |
---|
CustomScoreQuery(Query subQuery)
Create a CustomScoreQuery over input subQuery.
|
CustomScoreQuery(Query subQuery,
ValueSourceQuery... valSrcQueries)
Create a CustomScoreQuery over input subQuery and a
ValueSourceQuery . |
CustomScoreQuery(Query subQuery,
ValueSourceQuery valSrcQuery)
Create a CustomScoreQuery over input subQuery and a
ValueSourceQuery . |
Modifier and Type | Method and Description |
---|---|
Object |
clone()
Returns a clone of this query.
|
Weight |
createWeight(Searcher searcher)
Expert: Constructs an appropriate Weight implementation for this query.
|
boolean |
equals(Object o)
Returns true if
o is equal to this. |
void |
extractTerms(Set<Term> terms)
Expert: adds all terms occurring in this query to the terms set.
|
protected CustomScoreProvider |
getCustomScoreProvider(IndexReader reader)
Returns a
CustomScoreProvider that calculates the custom scores
for the given IndexReader . |
int |
hashCode()
Returns a hash code value for this object.
|
boolean |
isStrict()
Checks if this is strict custom scoring.
|
String |
name()
A short name of this query, used in
toString(String) . |
Query |
rewrite(IndexReader reader)
Expert: called to re-write queries into primitive queries.
|
void |
setStrict(boolean strict)
Set the strict mode of this query.
|
String |
toString(String field)
Prints a query to a string, with
field assumed to be the
default field and omitted. |
combine, getBoost, getSimilarity, mergeBooleanQueries, setBoost, toString, weight
public CustomScoreQuery(Query subQuery)
subQuery
- the sub query whose scored is being customized. Must not be null.public CustomScoreQuery(Query subQuery, ValueSourceQuery valSrcQuery)
ValueSourceQuery
.subQuery
- the sub query whose score is being customized. Must not be null.valSrcQuery
- a value source query whose scores are used in the custom score
computation. For most simple/convenient use case this would be a
FieldScoreQuery
.
This parameter is optional - it can be null.public CustomScoreQuery(Query subQuery, ValueSourceQuery... valSrcQueries)
ValueSourceQuery
.subQuery
- the sub query whose score is being customized. Must not be null.valSrcQueries
- value source queries whose scores are used in the custom score
computation. For most simple/convenient use case these would be
FieldScoreQueries
.
This parameter is optional - it can be null or even an empty array.public Query rewrite(IndexReader reader) throws IOException
Query
rewrite
in class Query
IOException
public void extractTerms(Set<Term> terms)
Query
rewritten
form.extractTerms
in class Query
public String toString(String field)
Query
field
assumed to be the
default field and omitted.
The representation used is one that is supposed to be readable
by QueryParser
. However,
there are the following limitations:
public boolean equals(Object o)
o
is equal to this.public int hashCode()
protected CustomScoreProvider getCustomScoreProvider(IndexReader reader) throws IOException
CustomScoreProvider
that calculates the custom scores
for the given IndexReader
. The default implementation returns a default
implementation as specified in the docs of CustomScoreProvider
.IOException
public Weight createWeight(Searcher searcher) throws IOException
Query
Only implemented by primitive queries, which re-write to themselves.
createWeight
in class Query
IOException
public boolean isStrict()
Note: only has effect when the ValueSource part is not null.
public void setStrict(boolean strict)
strict
- The strict mode to set.isStrict()
public String name()
toString(String)
.