Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Class and Description |
---|---|
static class |
FilterIndexReader.FilterTermEnum
Base class for filtering
TermEnum implementations. |
Modifier and Type | Field and Description |
---|---|
protected TermEnum |
FilterIndexReader.FilterTermEnum.in |
Modifier and Type | Method and Description |
---|---|
abstract TermEnum |
IndexReader.terms()
Returns an enumeration of all the terms in the index.
|
TermEnum |
SegmentReader.terms() |
TermEnum |
MultiReader.terms() |
TermEnum |
FilterIndexReader.terms() |
TermEnum |
ParallelReader.terms() |
abstract TermEnum |
IndexReader.terms(Term t)
Returns an enumeration of all terms starting at a given term.
|
TermEnum |
SegmentReader.terms(Term t) |
TermEnum |
MultiReader.terms(Term term) |
TermEnum |
FilterIndexReader.terms(Term t) |
TermEnum |
ParallelReader.terms(Term term) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractAllTermDocs.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.
|
void |
FilterIndexReader.FilterTermDocs.seek(TermEnum termEnum) |
Constructor and Description |
---|
FilterIndexReader.FilterTermEnum(TermEnum in) |
Modifier and Type | Class and 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.
|
Modifier and Type | Field and Description |
---|---|
protected TermEnum |
FilteredTermEnum.actualEnum
the delegate enum - to set this member use
FilteredTermEnum.setEnum(org.apache.lucene.index.TermEnum) |
Modifier and Type | Method and Description |
---|---|
protected void |
FilteredTermEnum.setEnum(TermEnum actualEnum)
use this method to set the actual TermEnum (e.g.
|