java.lang.Object
org.apache.lucene.search.DocIdSetIterator
org.apache.lucene.queries.spans.Spans
org.apache.lucene.queries.spans.ConjunctionSpans
org.apache.lucene.queries.spans.NearSpansUnordered
Similar to
NearSpansOrdered, but for the unordered case.
Expert: Only public for subclassing. Most implementations should not need this class
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate classMaintain totalSpanLength and maxEndPosition -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intFields inherited from class org.apache.lucene.queries.spans.ConjunctionSpans
atFirstInCurrentDoc, conjunction, oneExhaustedInCurrentDoc, subSpansFields inherited from class org.apache.lucene.queries.spans.Spans
NO_MORE_POSITIONSFields inherited from class org.apache.lucene.search.DocIdSetIterator
NO_MORE_DOCS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcollect(SpanCollector collector) Collect postings data from the leaves of the current Spans.intReturns the end position for the current start position, or -1 whenSpans.nextStartPosition()was not yet called on the current doc.intReturns the next start position for the current doc.(package private) static booleanpositionsOrdered(Spans spans1, Spans spans2) Check whether two Spans in the same document are ordered with possible overlap.intReturns the start position in the current doc, or -1 whenSpans.nextStartPosition()was not yet called on the current doc.(package private) booleanintwidth()Return the width of the match, which is typically used to sloppy freq.Methods inherited from class org.apache.lucene.queries.spans.ConjunctionSpans
advance, asTwoPhaseIterator, cost, docID, getSubSpans, nextDoc, positionsCost, toMatchDocMethods inherited from class org.apache.lucene.queries.spans.Spans
doCurrentSpans, doStartCurrentDoc, toStringMethods inherited from class org.apache.lucene.search.DocIdSetIterator
all, empty, range, slowAdvance
-
Field Details
-
allowedSlop
private final int allowedSlop -
spanWindow
-
-
Constructor Details
-
NearSpansUnordered
- Throws:
IOException
-
-
Method Details
-
positionsOrdered
Check whether two Spans in the same document are ordered with possible overlap.- Returns:
- true iff spans1 starts before spans2 or the spans start at the same position, and spans1 ends before spans2.
-
twoPhaseCurrentDocMatches
- Specified by:
twoPhaseCurrentDocMatchesin classConjunctionSpans- Throws:
IOException
-
nextStartPosition
Description 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:
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
Description copied from class:SpansCollect postings data from the leaves of the current Spans.This method should only be called after
Spans.nextStartPosition(), and beforeSpans.NO_MORE_POSITIONShas been reached.- Specified by:
collectin classSpans- Parameters:
collector- a SpanCollector- Throws:
IOException
-