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

com.j256.ormlite.dao.CloseableIterable Maven / Gradle / Ivy

package com.j256.ormlite.dao;

/**
 * Extension to Iterable to provide a iterator() method that returns a {@link CloseableIterator}.
 * 
 * @author graywatson
 */
public interface CloseableIterable extends Iterable {

	/**
	 * Returns an iterator over a set of elements of type T which can be closed.
	 */
	public CloseableIterator closeableIterator();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy