com.infomaximum.database.domainobject.iterator.IteratorEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
The newest version!
package com.infomaximum.database.domainobject.iterator;
import com.infomaximum.database.domainobject.DomainObject;
import com.infomaximum.database.exception.DatabaseException;
/**
* Created by kris on 08.09.17.
*/
public interface IteratorEntity extends AutoCloseable {
boolean hasNext();
E next() throws DatabaseException;
void close() throws DatabaseException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy