public interface HippoBeanIterator extends Iterator<HippoBean>
Modifier and Type | Method and Description |
---|---|
long |
getPosition()
Returns the current position within the iterator.
|
long |
getSize()
Returns the number of elements in the iterator.
|
HippoBean |
nextHippoBean()
Returns the next
HippoBean in the iteration. |
void |
skip(int skipNum)
Skip a number of elements in the iterator.
|
forEachRemaining, hasNext, next, remove
HippoBean nextHippoBean()
HippoBean
in the iteration. Note this method is allowed to return null
when the backing jcr node cannot be mapped to a HippoBean.HippoBean
in the iteration or null
if the jcr node cannot be mapped
to a HippoBean
NoSuchElementException
- if iteration has no more HippoBean
s.void skip(int skipNum)
skipNum
- the non-negative number of elements to skipNoSuchElementException
- if skipped past the last element in the iterator.long getSize()
long getPosition()
next
call.
Note that this method does not check if there is a next element,
i.e. an empty iterator will always return 0.Copyright © 2008–2017 Hippo B.V. (http://www.onehippo.com). All rights reserved.