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

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

Go to download

Lightweight Object Relational Model (ORM) for persisting objects to SQL databases.

There is a newer version: 6.1
Show newest version
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