Package javax.jcr
Interface PropertyIterator
-
- All Superinterfaces:
java.util.Iterator
,RangeIterator
- All Known Implementing Classes:
PropertyIteratorAdapter
public interface PropertyIterator extends RangeIterator
Allows easy iteration through a list ofProperty
s withnextProperty
as well as askip
method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Property
nextProperty()
Returns the nextProperty
in the iteration.-
Methods inherited from interface javax.jcr.RangeIterator
getPosition, getSize, skip
-
-
-
-
Method Detail
-
nextProperty
Property nextProperty()
Returns the nextProperty
in the iteration.- Returns:
- the next
Property
in the iteration. - Throws:
java.util.NoSuchElementException
- if iteration has no moreProperty
s.
-
-