Package javax.jcr
Interface PropertyIterator
-
- All Superinterfaces:
Iterator,RangeIterator
public interface PropertyIterator extends RangeIterator
Allows easy iteration through a list ofPropertys withnextPropertyas well as askipmethod.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertynextProperty()Returns the nextPropertyin the iteration.-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
Methods inherited from interface javax.jcr.RangeIterator
getPosition, getSize, skip
-
-
-
-
Method Detail
-
nextProperty
Property nextProperty()
Returns the nextPropertyin the iteration.- Returns:
- the next
Propertyin the iteration. - Throws:
NoSuchElementException- if iteration has no morePropertys.
-
-