Lucene.Net 1.4.3 Class Library

IndexReader.Terms Method

Returns an enumeration of all the terms in the index. The enumeration is ordered by Term.compareTo(). Each term is greater than all that precede it in the enumeration.

Overload List

Returns an enumeration of all the terms in the index. The enumeration is ordered by Term.compareTo(). Each term is greater than all that precede it in the enumeration.

public abstract TermEnum Terms();

Returns an enumeration of all terms after a given term. The enumeration is ordered by Term.compareTo(). Each term is greater than all that precede it in the enumeration.

public abstract TermEnum Terms(Term);

See Also

IndexReader Class | Lucene.Net.Index Namespace