public class SpanQueryFilter extends SpanFilter
QueryWrapperFilter
. Namely,
the position information for each matching document is stored.
This filter does not cache. See the CachingSpanFilter
for a wrapper that
caches.Modifier | Constructor and Description |
---|---|
protected |
SpanQueryFilter() |
|
SpanQueryFilter(SpanQuery query)
Constructs a filter which only matches documents matching
query . |
Modifier and Type | Method and Description |
---|---|
SpanFilterResult |
bitSpans(IndexReader reader)
Returns a SpanFilterResult with true for documents which should be permitted in
search results, and false for those that should not and Spans for where the true docs match.
|
boolean |
equals(Object o) |
DocIdSet |
getDocIdSet(IndexReader reader)
Creates a
DocIdSet enumerating the documents that should be
permitted in search results. |
SpanQuery |
getQuery() |
int |
hashCode() |
String |
toString() |
protected SpanQuery query
public DocIdSet getDocIdSet(IndexReader reader) throws IOException
Filter
DocIdSet
enumerating the documents that should be
permitted in search results. NOTE: null can be
returned if no documents are accepted by this Filter.
Note: This method will be called once per segment in
the index during searching. The returned DocIdSet
must refer to document IDs for that segment, not for
the top-level reader.
getDocIdSet
in class Filter
reader
- a IndexReader
instance opened on the index currently
searched on. Note, it is likely that the provided reader does not
represent the whole underlying index i.e. if the index has more than
one segment the given reader only represents a single segment.IOException
DocIdBitSet
public SpanFilterResult bitSpans(IndexReader reader) throws IOException
SpanFilter
bitSpans
in class SpanFilter
reader
- The IndexReader
to load position and DocIdSet information fromSpanFilterResult
IOException
- if there was an issue accessing the necessary informationpublic SpanQuery getQuery()