public abstract class IntervalsSource extends Object
IntervalQuery that provides an IntervalIterator
for a given field and segment
Static constructor functions for various different sources can be found in the
Intervals class| Constructor and Description |
|---|
IntervalsSource() |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
equals(Object other) |
abstract int |
hashCode() |
abstract IntervalIterator |
intervals(String field,
LeafReaderContext ctx)
Create an
IntervalIterator exposing the minimum intervals defined by this IntervalsSource
Returns null if no intervals for this field exist in this segment |
abstract MatchesIterator |
matches(String field,
LeafReaderContext ctx,
int doc)
Return a
MatchesIterator over the intervals defined by this IntervalsSource for a
given document and field
Returns null if no intervals exist in the given document and field |
abstract int |
minExtent()
Return the minimum possible width of an interval returned by this source
|
abstract Collection<IntervalsSource> |
pullUpDisjunctions()
Expert: return the set of disjunctions that make up this IntervalsSource
Most implementations can return
Collections.singleton(this) |
abstract String |
toString() |
abstract void |
visit(String field,
QueryVisitor visitor)
Expert: visit the tree of sources
|
public abstract IntervalIterator intervals(String field, LeafReaderContext ctx) throws IOException
IntervalIterator exposing the minimum intervals defined by this IntervalsSource
Returns null if no intervals for this field exist in this segmentfield - the field to read positions fromctx - the context for which to return the iteratorIOExceptionpublic abstract MatchesIterator matches(String field, LeafReaderContext ctx, int doc) throws IOException
MatchesIterator over the intervals defined by this IntervalsSource for a
given document and field
Returns null if no intervals exist in the given document and fieldfield - the field to read positions fromctx - the document's contextdoc - the document to return matches forIOExceptionpublic abstract void visit(String field, QueryVisitor visitor)
public abstract int minExtent()
public abstract Collection<IntervalsSource> pullUpDisjunctions()
Collections.singleton(this)Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.