| java.lang.Object org.apache.lucene.index.TermEnum org.apache.lucene.index.SegmentTermEnum
Method Summary | |
protected Object | clone() | final public void | close() Closes the enumeration to further activity, freeing resources. | final public int | docFreq() Returns the docFreq from the current TermInfo in the enumeration. | final long | freqPointer() | final public boolean | next() Increments the enumeration to the next element. | final Term | prev() Returns the previous Term enumerated. | final long | proxPointer() | final void | scanTo(Term term) Optimized scan, without allocating new terms. | final void | seek(long pointer, int p, Term t, TermInfo ti) | final public Term | term() Returns the current Term in the enumeration. | final TermInfo | termInfo() Returns the current TermInfo in the enumeration. | final void | termInfo(TermInfo ti) Sets the argument to the current TermInfo in the enumeration. |
indexInterval | int indexInterval(Code) | | |
indexPointer | long indexPointer(Code) | | |
maxSkipLevels | int maxSkipLevels(Code) | | |
skipInterval | int skipInterval(Code) | | |
close | final public void close() throws IOException(Code) | | Closes the enumeration to further activity, freeing resources.
|
docFreq | final public int docFreq()(Code) | | Returns the docFreq from the current TermInfo in the enumeration.
Initially invalid, valid after next() called for the first time.
|
freqPointer | final long freqPointer()(Code) | | |
next | final public boolean next() throws IOException(Code) | | Increments the enumeration to the next element. True if one exists.
|
prev | final Term prev()(Code) | | Returns the previous Term enumerated. Initially null.
|
proxPointer | final long proxPointer()(Code) | | |
scanTo | final void scanTo(Term term) throws IOException(Code) | | Optimized scan, without allocating new terms.
|
term | final public Term term()(Code) | | Returns the current Term in the enumeration.
Initially invalid, valid after next() called for the first time.
|
termInfo | final TermInfo termInfo()(Code) | | Returns the current TermInfo in the enumeration.
Initially invalid, valid after next() called for the first time.
|
termInfo | final void termInfo(TermInfo ti)(Code) | | Sets the argument to the current TermInfo in the enumeration.
Initially invalid, valid after next() called for the first time.
|
|
|