Uses of Interface
org.apache.lucene.search.Searchable
-
Packages that use Searchable Package Description org.apache.lucene.search Code to search indices. -
-
Uses of Searchable in org.apache.lucene.search
Subinterfaces of Searchable in org.apache.lucene.search Modifier and Type Interface Description interfaceRMIRemoteSearchableDeprecated.This package (all of contrib/remote) will be removed in 4.0.Classes in org.apache.lucene.search that implement Searchable Modifier and Type Class Description classAssertingIndexSearcherHelper class that adds some extra checks to ensure correct usage ofIndexSearcherandWeight.static classCheckHits.ExplanationAssertingSearcheran IndexSearcher that implicitly checks hte explanation of every match whenever it executes a search.classIndexSearcherImplements search over a single IndexReader.classMultiSearcherDeprecated.If you are using MultiSearcher over IndexSearchers, please use MultiReader instead; this class does not properly handle certain kinds of queries (see LUCENE-2756).classParallelMultiSearcherDeprecated.Please pass an ExecutorService toIndexSearcher, instead.classRemoteSearchableDeprecated.This package (all of contrib/remote) will be removed in 4.0.classSearcherDeprecated.In 4.0 this abstract class is removed/absorbed into IndexSearcherMethods in org.apache.lucene.search that return Searchable Modifier and Type Method Description Searchable[]MultiSearcher. getSearchables()Deprecated.Return the array ofSearchables this searches.Constructors in org.apache.lucene.search with parameters of type Searchable Constructor Description MultiSearcher(Searchable... searchables)Deprecated.Creates a searcher which searches searchers.ParallelMultiSearcher(ExecutorService executor, Searchable... searchables)Deprecated.Creates aSearchablewhich searches searchables with the specified ExecutorService.ParallelMultiSearcher(Searchable... searchables)Deprecated.Creates aSearchablewhich searches searchables with the default executor service (a cached thread pool).RemoteSearchable(Searchable local)Deprecated.Constructs and exports a remote searcher.
-