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

com.infomaximum.database.provider.DBIterator Maven / Gradle / Ivy

The newest version!
package com.infomaximum.database.provider;

import com.infomaximum.database.exception.DatabaseException;

public interface DBIterator extends AutoCloseable {

    enum StepDirection {
        FORWARD, BACKWARD
    }

    KeyValue seek(KeyPattern pattern) throws DatabaseException;
    KeyValue next() throws DatabaseException;
    KeyValue step(StepDirection direction) throws DatabaseException;

    @Override
    void close() throws DatabaseException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy