All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jcr.query.RowIterator Maven / Gradle / Ivy

/*
 * Copyright 2009 Day Management AG, Switzerland. All rights reserved.
 */
package javax.jcr.query;

import javax.jcr.RangeIterator;

/**
 * Allows easy iteration through a list of Rows with
 * nextRow as well as a skip method inherited from
 * RangeIterator.
 */
public interface RowIterator extends RangeIterator {

    /**
     * Returns the next Row in the iteration.
     *
     * @return the next Row in the iteration.
     * @throws java.util.NoSuchElementException
     *          if iteration has no more
     *          Rows.
     */
    public Row nextRow();
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy