Package org.apache.lucene.search.spans
Class SpanPositionCheckQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.spans.SpanQuery
-
- org.apache.lucene.search.spans.SpanPositionCheckQuery
-
- All Implemented Interfaces:
Cloneable
- Direct Known Subclasses:
SpanPositionRangeQuery
public abstract class SpanPositionCheckQuery extends SpanQuery implements Cloneable
Base class for filtering a SpanQuery based on the position of a match.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classSpanPositionCheckQuery.SpanPositionCheckWeight
-
Constructor Summary
Constructors Constructor Description SpanPositionCheckQuery(SpanQuery match)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract FilterSpans.AcceptStatusacceptPosition(Spans spans)Implementing classes are required to return whether the current position is a match for the passed in "match"SpanQuery.SpanWeightcreateWeight(IndexSearcher searcher, boolean needsScores, float boost)Expert: Constructs an appropriate Weight implementation for this query.booleanequals(Object other)Returns true iffotheris equal to this.StringgetField()Returns the name of the field matched by this query.SpanQuerygetMatch()inthashCode()Override and implement query hash code properly in a subclass.Queryrewrite(IndexReader reader)Expert: called to re-write queries into primitive queries.-
Methods inherited from class org.apache.lucene.search.spans.SpanQuery
getTermContexts, getTermContexts
-
Methods inherited from class org.apache.lucene.search.Query
classHash, sameClassAs, toString, toString
-
-
-
-
Field Detail
-
match
protected SpanQuery match
-
-
Constructor Detail
-
SpanPositionCheckQuery
public SpanPositionCheckQuery(SpanQuery match)
-
-
Method Detail
-
getMatch
public SpanQuery getMatch()
- Returns:
- the SpanQuery whose matches are filtered.
-
getField
public String getField()
Description copied from class:SpanQueryReturns the name of the field matched by this query.
-
acceptPosition
protected abstract FilterSpans.AcceptStatus acceptPosition(Spans spans) throws IOException
Implementing classes are required to return whether the current position is a match for the passed in "match"SpanQuery. This is only called if the underlying lastSpans.nextStartPosition()for the match indicated a valid start position.- Parameters:
spans- TheSpansinstance, positioned at the spot to check- Returns:
- whether the match is accepted, rejected, or rejected and should move to the next doc.
- Throws:
IOException- See Also:
DocIdSetIterator.nextDoc()
-
createWeight
public SpanWeight createWeight(IndexSearcher searcher, boolean needsScores, float boost) throws IOException
Description copied from class:QueryExpert: Constructs an appropriate Weight implementation for this query.Only implemented by primitive queries, which re-write to themselves.
- Specified by:
createWeightin classSpanQueryneedsScores- True if document scores (Scorer.score()) are needed.boost- The boost that is propagated by the parent queries.- Throws:
IOException
-
rewrite
public Query rewrite(IndexReader reader) throws IOException
Description copied from class:QueryExpert: called to re-write queries into primitive queries. For example, a PrefixQuery will be rewritten into a BooleanQuery that consists of TermQuerys.- Overrides:
rewritein classQuery- Throws:
IOException
-
equals
public boolean equals(Object other)
Returns true iffotheris equal to this.- Specified by:
equalsin classQuery- See Also:
Query.sameClassAs(Object),Query.classHash()
-
hashCode
public int hashCode()
Description copied from class:QueryOverride and implement query hash code properly in a subclass. This is required so thatQueryCacheworks properly.- Specified by:
hashCodein classQuery- See Also:
Query.equals(Object)
-
-