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. Note that after calling terms(), {@link TermEnum#Next()} must be called on the resulting enumeration before calling other methods such as {@link TermEnum#Term()}.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public abstract TermEnum Terms()
Visual Basic
Public MustOverride Function Terms As TermEnum
Visual C++
public:
virtual TermEnum^ Terms() abstract

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Index.IndexReader.Terms"]

See Also