Uses of Class
org.apache.lucene.index.TermEnum
-
Packages that use TermEnum Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices. -
-
Uses of TermEnum in org.apache.lucene.index
Subclasses of TermEnum in org.apache.lucene.index Modifier and Type Class Description static class
FilterIndexReader.FilterTermEnum
Base class for filteringTermEnum
implementations.Fields in org.apache.lucene.index declared as TermEnum Modifier and Type Field Description protected TermEnum
FilterIndexReader.FilterTermEnum. in
Methods in org.apache.lucene.index that return TermEnum Modifier and Type Method Description TermEnum
FilterIndexReader. terms()
TermEnum
FilterIndexReader. terms(Term t)
abstract TermEnum
IndexReader. terms()
Returns an enumeration of all the terms in the index.abstract TermEnum
IndexReader. terms(Term t)
Returns an enumeration of all terms starting at a given term.TermEnum
MultiReader. terms()
TermEnum
MultiReader. terms(Term term)
TermEnum
ParallelReader. terms()
TermEnum
ParallelReader. terms(Term term)
TermEnum
SegmentReader. terms()
TermEnum
SegmentReader. terms(Term t)
Methods in org.apache.lucene.index with parameters of type TermEnum Modifier and Type Method Description void
AbstractAllTermDocs. seek(TermEnum termEnum)
void
FilterIndexReader.FilterTermDocs. seek(TermEnum termEnum)
void
MultipleTermPositions. seek(TermEnum termEnum)
Not implemented.void
TermDocs. seek(TermEnum termEnum)
Sets this to the data for the current term in aTermEnum
.Constructors in org.apache.lucene.index with parameters of type TermEnum Constructor Description FilterTermEnum(TermEnum in)
-
Uses of TermEnum in org.apache.lucene.search
Subclasses of TermEnum in org.apache.lucene.search Modifier and Type Class Description class
FilteredTermEnum
Abstract class for enumerating a subset of all terms.class
FuzzyTermEnum
Subclass of FilteredTermEnum for enumerating all terms that are similar to the specified filter term.class
PrefixTermEnum
Subclass of FilteredTermEnum for enumerating all terms that match the specified prefix filter term.class
SingleTermEnum
Subclass of FilteredTermEnum for enumerating a single term.class
TermRangeTermEnum
Subclass of FilteredTermEnum for enumerating all terms that match the specified range parameters.class
WildcardTermEnum
Subclass of FilteredTermEnum for enumerating all terms that match the specified wildcard filter term.Fields in org.apache.lucene.search declared as TermEnum Modifier and Type Field Description protected TermEnum
FilteredTermEnum. actualEnum
the delegate enum - to set this member useFilteredTermEnum.setEnum(org.apache.lucene.index.TermEnum)
Methods in org.apache.lucene.search with parameters of type TermEnum Modifier and Type Method Description protected void
FilteredTermEnum. setEnum(TermEnum actualEnum)
use this method to set the actual TermEnum (e.g.
-