Uses of Class
org.apache.lucene.search.DocIdSet

Packages that use DocIdSet
org.apache.lucene.misc   
org.apache.lucene.search Code to search indices. 
org.apache.lucene.spatial.geohash Support for Geohash encoding, decoding, and filtering. 
org.apache.lucene.spatial.tier Support for filtering based upon geographic location. 
org.apache.lucene.util Some utility classes. 
 

Uses of DocIdSet in org.apache.lucene.misc
 

Methods in org.apache.lucene.misc that return DocIdSet
protected  DocIdSet ChainedFilter.finalResult(OpenBitSetDISI result, int maxDocs)
          Deprecated. Either use CachingWrapperFilter, or switch to a different DocIdSet implementation yourself.
 DocIdSet ChainedFilter.getDocIdSet(IndexReader reader)
          Filter.getDocIdSet(org.apache.lucene.index.IndexReader).
 

Uses of DocIdSet in org.apache.lucene.search
 

Subclasses of DocIdSet in org.apache.lucene.search
protected  class FieldCacheTermsFilter.FieldCacheTermsFilterDocIdSet
           
 class FilteredDocIdSet
          Abstract decorator class for a DocIdSet implementation that provides on-demand filtering/validation mechanism on a given DocIdSet.
 

Fields in org.apache.lucene.search declared as DocIdSet
static DocIdSet DocIdSet.EMPTY_DOCIDSET
          An empty DocIdSet instance for easy use, e.g.
 

Methods in org.apache.lucene.search that return DocIdSet
protected  DocIdSet CachingWrapperFilter.docIdSetToCache(DocIdSet docIdSet, IndexReader reader)
          Provide the DocIdSet to be cached, using the DocIdSet provided by the wrapped Filter.
protected  DocIdSet BooleanFilter.finalResult(OpenBitSetDISI result, int maxDocs)
          Deprecated. Either use CachingWrapperFilter, or switch to a different DocIdSet implementation yourself.
 DocIdSet SpanFilterResult.getDocIdSet()
          Returns the docIdSet
 DocIdSet RemoteCachingWrapperFilter.getDocIdSet(IndexReader reader)
          Uses the FilterManager to keep the cache for a filter on the searcher side of a remote connection.
 DocIdSet BooleanFilter.getDocIdSet(IndexReader reader)
          Returns the a DocIdSetIterator representing the Boolean composition of the filters that have been added.
 DocIdSet TermsFilter.getDocIdSet(IndexReader reader)
           
 DocIdSet DuplicateFilter.getDocIdSet(IndexReader reader)
           
 DocIdSet SpanQueryFilter.getDocIdSet(IndexReader reader)
           
 DocIdSet QueryWrapperFilter.getDocIdSet(IndexReader reader)
           
 DocIdSet MultiTermQueryWrapperFilter.getDocIdSet(IndexReader reader)
          Returns a DocIdSet with documents that should be permitted in search results.
 DocIdSet FieldCacheTermsFilter.getDocIdSet(IndexReader reader)
           
abstract  DocIdSet FieldCacheRangeFilter.getDocIdSet(IndexReader reader)
          This method is implemented for each data type
 DocIdSet CachingWrapperFilter.getDocIdSet(IndexReader reader)
           
 DocIdSet CachingSpanFilter.getDocIdSet(IndexReader reader)
           
 DocIdSet Filter.getDocIdSet(IndexReader reader)
          Creates a DocIdSet enumerating the documents that should be permitted in search results.
 

Methods in org.apache.lucene.search with parameters of type DocIdSet
protected  DocIdSet CachingWrapperFilter.docIdSetToCache(DocIdSet docIdSet, IndexReader reader)
          Provide the DocIdSet to be cached, using the DocIdSet provided by the wrapped Filter.
 

Constructors in org.apache.lucene.search with parameters of type DocIdSet
FilteredDocIdSet(DocIdSet innerSet)
          Constructor.
SpanFilterResult(DocIdSet docIdSet, List positions)
           
 

Uses of DocIdSet in org.apache.lucene.spatial.geohash
 

Methods in org.apache.lucene.spatial.geohash that return DocIdSet
 DocIdSet GeoHashDistanceFilter.getDocIdSet(IndexReader reader)
           
 

Uses of DocIdSet in org.apache.lucene.spatial.tier
 

Methods in org.apache.lucene.spatial.tier that return DocIdSet
 DocIdSet LatLongDistanceFilter.getDocIdSet(IndexReader reader)
           
 DocIdSet CartesianShapeFilter.getDocIdSet(IndexReader reader)
           
 

Uses of DocIdSet in org.apache.lucene.util
 

Subclasses of DocIdSet in org.apache.lucene.util
 class DocIdBitSet
          Simple DocIdSet and DocIdSetIterator backed by a BitSet
 class OpenBitSet
          An "open" BitSet implementation that allows direct access to the array of words storing the bits.
 class OpenBitSetDISI
           
 class SortedVIntList
          Stores and iterate on sorted integers in compressed form in RAM.
 



Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.