com.enterprisemath.dao.big.BigEntityIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-dao Show documentation
Show all versions of em-dao Show documentation
Simple and powerful data access layer.
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