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

ucar.nc2.util.CloseableIterator Maven / Gradle / Ivy

Go to download

The NetCDF-Java Library is a Java interface to NetCDF files, as well as to many other types of scientific data formats.

The newest version!
package ucar.nc2.util;

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

/**
 * An iterator that must be closed.
 *
 * try (CloseableIterator iter = getIterator()) {
 *   // do stuff
 * }
 *
 * @author caron
 * @since 11/20/13
 */
public interface CloseableIterator extends Iterator, Closeable {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy