Home > Contents > Index >
IList.atEnd
Determines whether a list has reached the last row (at either end) of this list.
Syntax
public boolean atEnd()Description
The
atEnd
method determines whether a list has reached the last row (at either end) of this list.
atEnd()
is only meaningful ifhasData
() istrue
for the list.Returns
The returned boolean value depends on the method of navigation and the value of the "done" state if the move succeeds:
Just After You Do This... atEnd Returns This... Create the list.false
CallmoveToRow(IList.first,0)
false
CallmoveToRow(IList.last,0)
true
CallmoveToRow(IList.prev,0)
true
if the current row was 1 before the move;false
otherwise. CallmoveToRow(IList.next,0)
true
if current row was the last before the move; unchanged otherwise. CallmoveTo(n)
orCallmoveToRow(IList.gotorow,n)
false
if theIList
represents an uncached query object.Otherwise, if n is the last row, thentrue
, elsefalse
.
See Also
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.