Uses of Interface
org.apache.lucene.search.Searchable

Packages that use Searchable
org.apache.lucene.search Code to search indices. 
 

Uses of Searchable in org.apache.lucene.search
 

Subinterfaces of Searchable in org.apache.lucene.search
 interface RMIRemoteSearchable
          Deprecated. This package (all of contrib/remote) will be removed in 4.0.
 

Classes in org.apache.lucene.search that implement Searchable
 class IndexSearcher
          Implements search over a single IndexReader.
 class MultiSearcher
          Deprecated. If you are using MultiSearcher over IndexSearchers, please use MultiReader instead; this class does not properly handle certain kinds of queries (see LUCENE-2756).
 class ParallelMultiSearcher
          Deprecated. Please pass an ExecutorService to IndexSearcher, instead.
 class RemoteSearchable
          Deprecated. This package (all of contrib/remote) will be removed in 4.0.
 class Searcher
          Deprecated. In 4.0 this abstract class is removed/absorbed into IndexSearcher
 

Methods in org.apache.lucene.search that return Searchable
 Searchable[] MultiSearcher.getSearchables()
          Deprecated. Return the array of Searchables this searches.
 

Constructors in org.apache.lucene.search with parameters of type Searchable
MultiSearcher(Searchable... searchables)
          Deprecated. Creates a searcher which searches searchers.
ParallelMultiSearcher(ExecutorService executor, Searchable... searchables)
          Deprecated. Creates a Searchable which searches searchables with the specified ExecutorService.
ParallelMultiSearcher(Searchable... searchables)
          Deprecated. Creates a Searchable which searches searchables with the default executor service (a cached thread pool).
RemoteSearchable(Searchable local)
          Deprecated. Constructs and exports a remote searcher.
 



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