Interface CloseableIterableWithoutException<T>
- Type Parameters:
T- type of elements of the iterator
- All Superinterfaces:
CloseableIterable<T>, Iterable<T>
- All Known Subinterfaces:
ConjunctiveQuery, InMemoryAtomSet
- All Known Implementing Classes:
AbstractInMemoryAtomSet, CloseableIterableAdapter, DefaultConjunctiveQuery, DefaultInMemoryAtomSet, LinkedListAtomSet
Represents an iterable that provides closeable iterators without checked exceptions.
- Author:
- Clément Sipieter (INRIA) <clement@6pi.fr>
-
Method Summary
Modifier and TypeMethodDescriptioniterator()Returns a closeable iterator over the elements of this iterable.Methods inherited from interface Iterable
forEach, spliterator
-
Method Details
-
iterator
CloseableIteratorWithoutException<T> iterator()Description copied from interface:CloseableIterableReturns a closeable iterator over the elements of this iterable.
-