Uses of Class
org.apache.lucene.index.TermEnum

Packages that use TermEnum
org.apache.lucene.index Code to maintain and access indices. 
org.apache.lucene.queryParser.surround.query This package contains SrndQuery and its subclasses. 
org.apache.lucene.search Code to search indices. 
org.apache.lucene.search.regex Regular expression Query. 
 

Uses of TermEnum in org.apache.lucene.index
 

Subclasses of TermEnum in org.apache.lucene.index
static class FilterIndexReader.FilterTermEnum
          Base class for filtering TermEnum implementations.
 

Fields in org.apache.lucene.index declared as TermEnum
protected  TermEnum FilterIndexReader.FilterTermEnum.in
           
 

Methods in org.apache.lucene.index that return TermEnum
 TermEnum FilterIndexReader.terms()
           
abstract  TermEnum IndexReader.terms()
          Returns an enumeration of all the terms in the index.
 TermEnum ParallelReader.terms()
           
 TermEnum MultiReader.terms()
           
 TermEnum FilterIndexReader.terms(Term t)
           
abstract  TermEnum IndexReader.terms(Term t)
          Returns an enumeration of all terms starting at a given term.
 TermEnum ParallelReader.terms(Term term)
           
 TermEnum MultiReader.terms(Term term)
           
 

Methods in org.apache.lucene.index with parameters of type TermEnum
 void FilterIndexReader.FilterTermDocs.seek(TermEnum termEnum)
           
 void TermDocs.seek(TermEnum termEnum)
          Sets this to the data for the current term in a TermEnum.
 void MultipleTermPositions.seek(TermEnum termEnum)
          Not implemented.
 

Constructors in org.apache.lucene.index with parameters of type TermEnum
FilterIndexReader.FilterTermEnum(TermEnum in)
           
 

Uses of TermEnum in org.apache.lucene.queryParser.surround.query
 

Methods in org.apache.lucene.queryParser.surround.query that return TermEnum
 TermEnum SpanNearClauseFactory.getTermEnum(String termText)
           
 

Uses of TermEnum in org.apache.lucene.search
 

Subclasses of TermEnum in org.apache.lucene.search
 class FilteredTermEnum
          Abstract class for enumerating a subset of all terms.
 class FuzzyTermEnum
          Subclass of FilteredTermEnum for enumerating all terms that are similiar to the specified filter term.
 class WildcardTermEnum
          Subclass of FilteredTermEnum for enumerating all terms that match the specified wildcard filter term.
 

Methods in org.apache.lucene.search with parameters of type TermEnum
protected  void FilteredTermEnum.setEnum(TermEnum actualEnum)
           
 

Uses of TermEnum in org.apache.lucene.search.regex
 

Subclasses of TermEnum in org.apache.lucene.search.regex
 class RegexTermEnum
          Subclass of FilteredTermEnum for enumerating all terms that match the specified regular expression term using the specified regular expression implementation.
 



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