11 lines
194 B
Java
11 lines
194 B
Java
package net.locusworks.common.interfaces;
|
|
|
|
import java.util.Iterator;
|
|
|
|
public interface AutoCloseableIterator<T> extends Iterator<T>, AutoCloseable {
|
|
|
|
@Override
|
|
void close();
|
|
|
|
}
|