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

org.archive.util.iterator.CloseableIterator Maven / Gradle / Ivy

There is a newer version: 1.1.9
Show newest version
package org.archive.util.iterator;

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

/**
 * Iterator with a close method that frees up any resources associated with 
 * the Iterator.
 *
 * @author brad
 * @version $Date$, $Revision$
 * @param  
 */
public interface CloseableIterator extends Iterator, Closeable {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy