Advances to the next document matching the query.
The iterator over the matching documents is buffered using {@link TermDocs#Read(int[],int[])}.

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

Syntax

C#
[ObsoleteAttribute("use NextDoc() instead.")]
public override bool Next()
Visual Basic
<ObsoleteAttribute("use NextDoc() instead.")> _
Public Overrides Function Next As Boolean
Visual C++
[ObsoleteAttribute(L"use NextDoc() instead.")]
public:
virtual bool Next() override

Return Value

true iff there is another document matching the query.

See Also