org.apache.lucene.index

Interface TermPositions

public interface TermPositions extends TermDocs

TermPositions provides an interface for enumerating the <document, frequency, <position>* > tuples for a term.

The document and frequency are the same as for a TermDocs. The positions portion lists the ordinal positions of each occurrence of a term in a document.

See Also: termPositions

Method Summary
intnextPosition()
Returns next position in the current document.

Method Detail

nextPosition

public int nextPosition()
Returns next position in the current document. It is an error to call this more than {@link #freq()} times without calling {@link #next()}

This is invalid until {@link #next()} is called for the first time.

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