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

com.infomaximum.database.DataIterator Maven / Gradle / Ivy

The newest version!
package com.infomaximum.database;

import com.infomaximum.database.exception.DatabaseException;

import java.util.Iterator;

public interface DataIterator extends AutoCloseable, Iterator {

//    void reuseReturningRecord(boolean value);

    @Override
    boolean hasNext() throws DatabaseException;

    @Override
    T next() throws DatabaseException;

    @Override
    void close() throws DatabaseException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy