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:
Cloneable
This class is very similar to
SpanNearQuery except that it factors
in the value of the payloads located at each of the positions where the
TermSpans occurs.
NOTE: In order to take advantage of this with the default scoring implementation
(DefaultSimilarity), you must override DefaultSimilarity.scorePayload(int, int, int, BytesRef),
which returns 1 by default.
Payload scores are aggregated using a pluggable PayloadFunction.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassclass -
Field Summary
FieldsFields inherited from class org.apache.lucene.search.spans.SpanNearQuery
clauses, field, inOrder, slop -
Constructor Summary
ConstructorsConstructorDescriptionPayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder) PayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder, PayloadFunction function) -
Method Summary
Modifier and TypeMethodDescriptionclone()Returns a clone of this query.createWeight(IndexSearcher searcher) Expert: Constructs an appropriate Weight implementation for this query.booleanReturns true iffois equal to this.inthashCode()Prints a query to a string, withfieldassumed to be the default field and omitted.Methods inherited from class org.apache.lucene.search.spans.SpanNearQuery
extractTerms, getClauses, getField, getSlop, getSpans, isInOrder, rewrite
-
Field Details
-
fieldName
-
function
-
-
Constructor Details
-
PayloadNearQuery
-
PayloadNearQuery
-
-
Method Details
-
createWeight
Description copied from class:QueryExpert: Constructs an appropriate Weight implementation for this query.Only implemented by primitive queries, which re-write to themselves.
- Overrides:
createWeightin classSpanQuery- Throws:
IOException
-
clone
Description copied from class:QueryReturns a clone of this query.- Overrides:
clonein classSpanNearQuery
-
toString
Description copied from class:QueryPrints a query to a string, withfieldassumed to be the default field and omitted.- Overrides:
toStringin classSpanNearQuery
-
hashCode
public int hashCode()- Overrides:
hashCodein classSpanNearQuery
-
equals
Description copied from class:SpanNearQueryReturns true iffois equal to this.- Overrides:
equalsin classSpanNearQuery
-