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

de.aservo.ldap.adapter.api.cursor.Cursor Maven / Gradle / Ivy

package de.aservo.ldap.adapter.api.cursor;

import de.aservo.ldap.adapter.api.database.util.UncheckedCloseable;

import java.io.IOException;


public interface Cursor
        extends Iterable, UncheckedCloseable {

    boolean next();

    T get();

    void close()
            throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy