Package javax.jcr.query
Interface RowIterator
-
- All Superinterfaces:
java.util.Iterator,RangeIterator
- All Known Implementing Classes:
RowIteratorAdapter
public interface RowIterator extends RangeIterator
Allows easy iteration through a list ofRows withnextRowas well as askipmethod inherited fromRangeIterator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RownextRow()Returns the nextRowin the iteration.-
Methods inherited from interface javax.jcr.RangeIterator
getPosition, getSize, skip
-
-
-
-
Method Detail
-
nextRow
Row nextRow()
Returns the nextRowin the iteration.- Returns:
- the next
Rowin the iteration. - Throws:
java.util.NoSuchElementException- if iteration has no moreRows.
-
-