1 package org.exoplatform.services.jcr.impl.core; 2 3 import javax.jcr.Item; 4 import javax.jcr.RangeIterator; 5 6 public interface ItemIterator extends RangeIterator { 7 8 /** 9 * Returns the next <code>Element</code> in the iteration. 10 * 11 * @return the next <code>Element</code> in the iteration. 12 * @throws java.util.NoSuchElementException 13 * if iteration has no more elements. 14 */ 15 public Item nextItem(); 16 } 17