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 classFilterIndexReader.FilterTermEnumBase class for filteringTermEnumimplementations.Fields in org.apache.lucene.index declared as TermEnum Modifier and Type Field Description protected TermEnumFilterIndexReader.FilterTermEnum. inMethods in org.apache.lucene.index that return TermEnum Modifier and Type Method Description TermEnumFilterIndexReader. terms()TermEnumFilterIndexReader. terms(Term t)abstract TermEnumIndexReader. terms()Returns an enumeration of all the terms in the index.abstract TermEnumIndexReader. terms(Term t)Returns an enumeration of all terms starting at a given term.TermEnumMultiReader. terms()TermEnumMultiReader. terms(Term term)TermEnumParallelReader. terms()TermEnumParallelReader. terms(Term term)TermEnumSegmentReader. terms()TermEnumSegmentReader. terms(Term t)Methods in org.apache.lucene.index with parameters of type TermEnum Modifier and Type Method Description voidAbstractAllTermDocs. seek(TermEnum termEnum)voidFilterIndexReader.FilterTermDocs. seek(TermEnum termEnum)voidMultipleTermPositions. seek(TermEnum termEnum)Not implemented.voidTermDocs. 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 classFilteredTermEnumAbstract class for enumerating a subset of all terms.classFuzzyTermEnumSubclass of FilteredTermEnum for enumerating all terms that are similar to the specified filter term.classPrefixTermEnumSubclass of FilteredTermEnum for enumerating all terms that match the specified prefix filter term.classSingleTermEnumSubclass of FilteredTermEnum for enumerating a single term.classTermRangeTermEnumSubclass of FilteredTermEnum for enumerating all terms that match the specified range parameters.classWildcardTermEnumSubclass 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 TermEnumFilteredTermEnum. actualEnumthe 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 voidFilteredTermEnum. setEnum(TermEnum actualEnum)use this method to set the actual TermEnum (e.g.
-