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

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

The 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 - 2024 Weber Informatics LLC | Privacy Policy