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

com.enterprisemath.dao.big.BigEntityIterator Maven / Gradle / Ivy

There is a newer version: 4.3.2
Show newest version
package com.enterprisemath.dao.big;

import java.util.NoSuchElementException;

/**
 * Definition of interface for iterating through big entities.
 *
 * @author radek.hecl
 */
public interface BigEntityIterator {

    /**
     * Returns whether the next observation is available or not.
     *
     * @return true if the next observation is available
     */
    public boolean isNextAvailable();

    /**
     * Returns the next observation.
     *
     * @return next the next observation
     * @throws NoSuchElementException if there is not any more observation available
     */
    public BigEntity getNext() throws NoSuchElementException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy