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 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 javax.jcr.RangeIterator
getPosition, getSize, skip 
 - 
 
 - 
 
- 
- 
Method Detail
- 
nextProperty
Property nextProperty()
Returns the nextPropertyin the iteration.- Returns:
 - the next 
Propertyin the iteration. - Throws:
 java.util.NoSuchElementException- if iteration has no morePropertys.
 
 - 
 
 -