Package org.apache.lucene.search.spans
Interface SpanCollector
-
- All Known Implementing Classes:
PayloadScoreQuery.PayloadSpans,PayloadSpanCollector,PhraseHelper.OffsetSpanCollector,SpanPayloadCheckQuery.PayloadChecker
public interface SpanCollectorAn interface defining the collection of postings information from the leaves of aSpans
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcollectLeaf(PostingsEnum postings, int position, Term term)Collect information from postingsvoidreset()Call to indicate that the driving Spans has moved to a new position
-
-
-
Method Detail
-
collectLeaf
void collectLeaf(PostingsEnum postings, int position, Term term) throws java.io.IOException
Collect information from postings- Parameters:
postings- aPostingsEnumposition- the position of the PostingsEnumterm- theTermfor this postings list- Throws:
java.io.IOException- on error
-
reset
void reset()
Call to indicate that the driving Spans has moved to a new position
-
-