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

com.buschmais.xo.api.ResultIterator Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package com.buschmais.xo.api;

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

/**
 * An {@link Iterator} which extends {@link AutoCloseable} and {@link Closeable}.
 *
 * @param  The type returned by the {@link Iterator}.
 */
public interface ResultIterator extends Iterator, AutoCloseable, Closeable {

    @Override
    void close();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy