Package org.apache.lucene.search.spans
Class NearSpansOrdered
- java.lang.Object
-
- org.apache.lucene.search.DocIdSetIterator
-
- org.apache.lucene.search.spans.Spans
-
- org.apache.lucene.search.spans.ConjunctionSpans
-
- org.apache.lucene.search.spans.NearSpansOrdered
-
public class NearSpansOrdered extends ConjunctionSpans
A Spans that is formed from the ordered subspans of a SpanNearQuery where the subspans do not overlap and have a maximum slop between them.The formed spans only contains minimum slop matches.
The matching slop is computed from the distance(s) between the non overlapping matching Spans.
Successive matches are always formed from the successive Spans of the SpanNearQuery.The formed spans may contain overlaps when the slop is at least 1. For example, when querying using
t1 t2 t3
with slop at least 1, the fragment:t1 t2 t1 t3 t2 t3
matches twice:t1 t2 .. t3
t1 .. t2 t3
Expert: Only public for subclassing. Most implementations should not need this class
-
-
Field Summary
Fields Modifier and Type Field Description private intallowedSlopprotected intmatchEndprotected intmatchStartprotected intmatchWidth-
Fields inherited from class org.apache.lucene.search.spans.ConjunctionSpans
atFirstInCurrentDoc, conjunction, oneExhaustedInCurrentDoc, subSpans
-
Fields inherited from class org.apache.lucene.search.spans.Spans
NO_MORE_POSITIONS
-
Fields inherited from class org.apache.lucene.search.DocIdSetIterator
NO_MORE_DOCS
-
-
Constructor Summary
Constructors Constructor Description NearSpansOrdered(int allowedSlop, java.util.List<Spans> subSpans)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static intadvancePosition(Spans spans, int position)voidcollect(SpanCollector collector)Collect postings data from the leaves of the current Spans.intendPosition()Returns the end position for the current start position, or -1 whenSpans.nextStartPosition()was not yet called on the current doc.intnextStartPosition()Returns the next start position for the current doc.intstartPosition()Returns the start position in the current doc, or -1 whenSpans.nextStartPosition()was not yet called on the current doc.private booleanstretchToOrder()Order the subSpans within the same document by using nextStartPosition on all subSpans after the first as little as necessary.(package private) booleantwoPhaseCurrentDocMatches()private booleanunpositioned()intwidth()Return the width of the match, which is typically used to sloppy freq.-
Methods inherited from class org.apache.lucene.search.spans.ConjunctionSpans
advance, asTwoPhaseIterator, cost, docID, getSubSpans, nextDoc, positionsCost, toMatchDoc
-
Methods inherited from class org.apache.lucene.search.spans.Spans
doCurrentSpans, doStartCurrentDoc, toString
-
Methods inherited from class org.apache.lucene.search.DocIdSetIterator
all, empty, range, slowAdvance
-
-
-
-
Constructor Detail
-
NearSpansOrdered
public NearSpansOrdered(int allowedSlop, java.util.List<Spans> subSpans) throws java.io.IOException- Throws:
java.io.IOException
-
-
Method Detail
-
twoPhaseCurrentDocMatches
boolean twoPhaseCurrentDocMatches() throws java.io.IOException- Specified by:
twoPhaseCurrentDocMatchesin classConjunctionSpans- Throws:
java.io.IOException
-
unpositioned
private boolean unpositioned()
-
nextStartPosition
public int nextStartPosition() throws java.io.IOExceptionDescription copied from class:SpansReturns the next start position for the current doc. There is always at least one start/end position per doc. After the last start/end position at the current doc this returnsSpans.NO_MORE_POSITIONS.- Specified by:
nextStartPositionin classSpans- Throws:
java.io.IOException
-
stretchToOrder
private boolean stretchToOrder() throws java.io.IOExceptionOrder the subSpans within the same document by using nextStartPosition on all subSpans after the first as little as necessary. Return true when the subSpans could be ordered in this way, otherwise at least one is exhausted in the current doc.- Throws:
java.io.IOException
-
advancePosition
private static int advancePosition(Spans spans, int position) throws java.io.IOException
- Throws:
java.io.IOException
-
startPosition
public int startPosition()
Description copied from class:SpansReturns the start position in the current doc, or -1 whenSpans.nextStartPosition()was not yet called on the current doc. After the last start/end position at the current doc this returnsSpans.NO_MORE_POSITIONS.- Specified by:
startPositionin classSpans
-
endPosition
public int endPosition()
Description copied from class:SpansReturns the end position for the current start position, or -1 whenSpans.nextStartPosition()was not yet called on the current doc. After the last start/end position at the current doc this returnsSpans.NO_MORE_POSITIONS.- Specified by:
endPositionin classSpans
-
width
public int width()
Description copied from class:SpansReturn the width of the match, which is typically used to sloppy freq. It is only legal to call this method when the iterator is on a valid doc ID and positioned. The return value must be positive, and lower values means that the match is better.
-
collect
public void collect(SpanCollector collector) throws java.io.IOException
Description copied from class:SpansCollect postings data from the leaves of the current Spans. This method should only be called afterSpans.nextStartPosition(), and beforeSpans.NO_MORE_POSITIONShas been reached.
-
-