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 toSpanNearQueryexcept that it factors in the value of the payloads located at each of the positions where theTermSpansoccurs. 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 classPayloadNearQuery.PayloadNearSpanScorerclassPayloadNearQuery.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 PayloadNearQueryclone()Returns a clone of this query.WeightcreateWeight(IndexSearcher searcher)Expert: Constructs an appropriate Weight implementation for this query.booleanequals(java.lang.Object obj)Returns true iffois equal to this.inthashCode()java.lang.StringtoString(java.lang.String field)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 
 - 
 
 - 
 
- 
- 
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:QueryExpert: Constructs an appropriate Weight implementation for this query.Only implemented by primitive queries, which re-write to themselves.
- Overrides:
 createWeightin classSpanQuery- Throws:
 java.io.IOException
 
- 
clone
public PayloadNearQuery clone()
Description copied from class:QueryReturns a clone of this query.- Overrides:
 clonein classSpanNearQuery
 
- 
toString
public java.lang.String toString(java.lang.String field)
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
public boolean equals(java.lang.Object obj)
Description copied from class:SpanNearQueryReturns true iffois equal to this.- Overrides:
 equalsin classSpanNearQuery
 
 - 
 
 -