Module org.apache.lucene.queries
Class DisjunctionIntervalsSource.DisjunctionMatchesIterator
java.lang.Object
org.apache.lucene.queries.intervals.DisjunctionIntervalsSource.DisjunctionMatchesIterator
- All Implemented Interfaces:
IntervalMatchesIterator
,MatchesIterator
- Enclosing class:
DisjunctionIntervalsSource
private static class DisjunctionIntervalsSource.DisjunctionMatchesIterator
extends Object
implements IntervalMatchesIterator
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final DisjunctionIntervalsSource.DisjunctionIntervalIterator
(package private) final List
<IntervalMatchesIterator> -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
DisjunctionMatchesIterator
(DisjunctionIntervalsSource.DisjunctionIntervalIterator it, List<IntervalMatchesIterator> subs) -
Method Summary
Modifier and TypeMethodDescriptionint
The ending offset of the current match, or-1
if offsets are not availableint
The end position of the current match, or-1
if positions are not availableint
gaps()
The number of top-level gaps inside the current matchgetQuery()
Returns the Query causing the current matchReturns a MatchesIterator that iterates over the positions and offsets of individual terms within the current matchboolean
next()
Advance the iterator to the next match positionint
The starting offset of the current match, or-1
if offsets are not availableint
The start position of the current match, or-1
if positions are not availableint
width()
The width of the current match
-
Field Details
-
it
-
subs
-
-
Constructor Details
-
DisjunctionMatchesIterator
private DisjunctionMatchesIterator(DisjunctionIntervalsSource.DisjunctionIntervalIterator it, List<IntervalMatchesIterator> subs)
-
-
Method Details
-
next
Description copied from interface:MatchesIterator
Advance the iterator to the next match position- Specified by:
next
in interfaceMatchesIterator
- Returns:
true
if matches have not been exhausted- Throws:
IOException
-
startPosition
public int startPosition()Description copied from interface:MatchesIterator
The start position of the current match, or-1
if positions are not availableShould only be called after
MatchesIterator.next()
has returnedtrue
- Specified by:
startPosition
in interfaceMatchesIterator
-
endPosition
public int endPosition()Description copied from interface:MatchesIterator
The end position of the current match, or-1
if positions are not availableShould only be called after
MatchesIterator.next()
has returnedtrue
- Specified by:
endPosition
in interfaceMatchesIterator
-
startOffset
Description copied from interface:MatchesIterator
The starting offset of the current match, or-1
if offsets are not availableShould only be called after
MatchesIterator.next()
has returnedtrue
- Specified by:
startOffset
in interfaceMatchesIterator
- Throws:
IOException
-
endOffset
Description copied from interface:MatchesIterator
The ending offset of the current match, or-1
if offsets are not availableShould only be called after
MatchesIterator.next()
has returnedtrue
- Specified by:
endOffset
in interfaceMatchesIterator
- Throws:
IOException
-
getSubMatches
Description copied from interface:MatchesIterator
Returns a MatchesIterator that iterates over the positions and offsets of individual terms within the current matchReturns
null
if there are no submatches (ie the current iterator is at the leaf level)Should only be called after
MatchesIterator.next()
has returnedtrue
- Specified by:
getSubMatches
in interfaceMatchesIterator
- Throws:
IOException
-
getQuery
Description copied from interface:MatchesIterator
Returns the Query causing the current matchIf this
MatchesIterator
has been returned from aMatchesIterator.getSubMatches()
call, then returns aTermQuery
equivalent to the current matchShould only be called after
MatchesIterator.next()
has returnedtrue
- Specified by:
getQuery
in interfaceMatchesIterator
-
gaps
public int gaps()Description copied from interface:IntervalMatchesIterator
The number of top-level gaps inside the current match- Specified by:
gaps
in interfaceIntervalMatchesIterator
- See Also:
-
width
public int width()Description copied from interface:IntervalMatchesIterator
The width of the current match- Specified by:
width
in interfaceIntervalMatchesIterator
- See Also:
-