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

tools.xor.service.EntityScroll Maven / Gradle / Ivy

There is a newer version: 2.4.1
Show newest version
package tools.xor.service;

import java.io.Closeable;
import java.io.IOException;
import java.util.Iterator;

public interface EntityScroll extends Closeable, Iterator
{
    void close () throws IOException;

    boolean hasNext ();

    T next ();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy