Package org.apache.lucene.queries.spans
Class SpanNearQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.queries.spans.SpanQuery
-
- org.apache.lucene.queries.spans.SpanNearQuery
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SpanNearQuery.Builder
A builder for SpanNearQueriesclass
SpanNearQuery.SpanNearWeight
Creates SpanNearQuery scorer instances
-
Constructor Summary
Constructors Constructor Description SpanNearQuery(SpanQuery[] clausesIn, int slop, boolean inOrder)
Construct a SpanNearQuery.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SpanWeight
createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
boolean
equals(Object other)
SpanQuery[]
getClauses()
Return the clauses whose spans are matched.String
getField()
Returns the name of the field matched by this query.int
getSlop()
Return the maximum number of intervening unmatched positions permitted.int
hashCode()
boolean
isInOrder()
Return true if matches are required to be in-order.static SpanNearQuery.Builder
newOrderedNearQuery(String field)
Returns aSpanNearQuery.Builder
for an ordered query on a particular fieldstatic SpanNearQuery.Builder
newUnorderedNearQuery(String field)
Returns aSpanNearQuery.Builder
for an unordered query on a particular fieldQuery
rewrite(IndexSearcher indexSearcher)
String
toString(String field)
void
visit(QueryVisitor visitor)
-
Methods inherited from class org.apache.lucene.queries.spans.SpanQuery
getTermStates, getTermStates
-
Methods inherited from class org.apache.lucene.search.Query
classHash, rewrite, sameClassAs, toString
-
-
-
-
Constructor Detail
-
SpanNearQuery
public SpanNearQuery(SpanQuery[] clausesIn, int slop, boolean inOrder)
Construct a SpanNearQuery. Matches spans matching a span from each clause, with up toslop
total unmatched positions between them.
WheninOrder
is true, the spans from each clause must be in the same order as inclauses
and must be non-overlapping.
WheninOrder
is false, the spans from each clause need not be ordered and may overlap.- Parameters:
clausesIn
- the clauses to find near each other, in the same field, at least 2.slop
- The slop valueinOrder
- true if order is important
-
-
Method Detail
-
newOrderedNearQuery
public static SpanNearQuery.Builder newOrderedNearQuery(String field)
Returns aSpanNearQuery.Builder
for an ordered query on a particular field
-
newUnorderedNearQuery
public static SpanNearQuery.Builder newUnorderedNearQuery(String field)
Returns aSpanNearQuery.Builder
for an unordered query on a particular field
-
getClauses
public SpanQuery[] getClauses()
Return the clauses whose spans are matched.
-
getSlop
public int getSlop()
Return the maximum number of intervening unmatched positions permitted.
-
isInOrder
public boolean isInOrder()
Return true if matches are required to be in-order.
-
getField
public String getField()
Description copied from class:SpanQuery
Returns the name of the field matched by this query.
-
createWeight
public SpanWeight createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) throws IOException
- Specified by:
createWeight
in classSpanQuery
- Throws:
IOException
-
rewrite
public Query rewrite(IndexSearcher indexSearcher) throws IOException
- Overrides:
rewrite
in classQuery
- Throws:
IOException
-
visit
public void visit(QueryVisitor visitor)
-
-