Package org.apache.lucene.search.spans
Class SpanPositionRangeQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.spans.SpanQuery
-
- org.apache.lucene.search.spans.SpanPositionCheckQuery
-
- org.apache.lucene.search.spans.SpanPositionRangeQuery
-
- All Implemented Interfaces:
Cloneable
- Direct Known Subclasses:
SpanFirstQuery
public class SpanPositionRangeQuery extends SpanPositionCheckQuery
Checks to see if theSpanPositionCheckQuery.getMatch()lies between a start and end position SeeSpanFirstQueryfor a derivation that is optimized for the case where start position is 0.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.search.spans.SpanPositionCheckQuery
SpanPositionCheckQuery.SpanPositionCheckWeight
-
-
Field Summary
Fields Modifier and Type Field Description protected intendprotected intstart-
Fields inherited from class org.apache.lucene.search.spans.SpanPositionCheckQuery
match
-
-
Constructor Summary
Constructors Constructor Description SpanPositionRangeQuery(SpanQuery match, int start, int end)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected FilterSpans.AcceptStatusacceptPosition(Spans spans)Implementing classes are required to return whether the current position is a match for the passed in "match"SpanQuery.booleanequals(Object o)Returns true iffotheris equal to this.intgetEnd()intgetStart()inthashCode()Override and implement query hash code properly in a subclass.StringtoString(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.SpanPositionCheckQuery
createWeight, getField, getMatch, rewrite, visit
-
Methods inherited from class org.apache.lucene.search.spans.SpanQuery
getTermStates, getTermStates
-
Methods inherited from class org.apache.lucene.search.Query
classHash, sameClassAs, toString
-
-
-
-
Constructor Detail
-
SpanPositionRangeQuery
public SpanPositionRangeQuery(SpanQuery match, int start, int end)
-
-
Method Detail
-
acceptPosition
protected FilterSpans.AcceptStatus acceptPosition(Spans spans) throws IOException
Description copied from class:SpanPositionCheckQueryImplementing 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.- Specified by:
acceptPositionin classSpanPositionCheckQuery- 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()
-
getStart
public int getStart()
- Returns:
- The minimum position permitted in a match
-
getEnd
public int getEnd()
- Returns:
- the maximum end position permitted in a match.
-
toString
public String toString(String field)
Description copied from class:QueryPrints a query to a string, withfieldassumed to be the default field and omitted.
-
equals
public boolean equals(Object o)
Description copied from class:SpanPositionCheckQueryReturns true iffotheris equal to this.- Overrides:
equalsin classSpanPositionCheckQuery- 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.- Overrides:
hashCodein classSpanPositionCheckQuery- See Also:
Query.equals(Object)
-
-