Class PayloadNearQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.spans.SpanQuery
-
- org.apache.lucene.search.spans.SpanNearQuery
-
- org.apache.lucene.search.payloads.PayloadNearQuery
-
- All Implemented Interfaces:
java.lang.Cloneable
public class PayloadNearQuery extends SpanNearQuery
This class is very similar toSpanNearQuery
except that it factors in the value of the payloads located at each of the positions where theTermSpans
occurs. NOTE: In order to take advantage of this with the default scoring implementation (DefaultSimilarity
), you must overrideDefaultSimilarity.scorePayload(int, int, int, BytesRef)
, which returns 1 by default. Payload scores are aggregated using a pluggablePayloadFunction
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
PayloadNearQuery.PayloadNearSpanScorer
class
PayloadNearQuery.PayloadNearSpanWeight
-
Constructor Summary
Constructors Constructor Description PayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder)
PayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder, PayloadFunction function)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PayloadNearQuery
clone()
Returns a clone of this query.Weight
createWeight(IndexSearcher searcher)
Expert: Constructs an appropriate Weight implementation for this query.boolean
equals(java.lang.Object obj)
Returns true iffo
is equal to this.int
hashCode()
java.lang.String
toString(java.lang.String field)
Prints a query to a string, withfield
assumed to be the default field and omitted.-
Methods inherited from class org.apache.lucene.search.spans.SpanNearQuery
extractTerms, getClauses, getField, getSlop, getSpans, isInOrder, rewrite
-
-
-
-
Constructor Detail
-
PayloadNearQuery
public PayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder)
-
PayloadNearQuery
public PayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder, PayloadFunction function)
-
-
Method Detail
-
createWeight
public Weight createWeight(IndexSearcher searcher) throws java.io.IOException
Description copied from class:Query
Expert: Constructs an appropriate Weight implementation for this query.Only implemented by primitive queries, which re-write to themselves.
- Overrides:
createWeight
in classSpanQuery
- Throws:
java.io.IOException
-
clone
public PayloadNearQuery clone()
Description copied from class:Query
Returns a clone of this query.- Overrides:
clone
in classSpanNearQuery
-
toString
public java.lang.String toString(java.lang.String field)
Description copied from class:Query
Prints a query to a string, withfield
assumed to be the default field and omitted.- Overrides:
toString
in classSpanNearQuery
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSpanNearQuery
-
equals
public boolean equals(java.lang.Object obj)
Description copied from class:SpanNearQuery
Returns true iffo
is equal to this.- Overrides:
equals
in classSpanNearQuery
-
-