
com.github.dakusui.actionunit.AutocloseableIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of actionunit Show documentation
Show all versions of actionunit Show documentation
A library to build 'action' structure for testing
package com.github.dakusui.actionunit;
import java.util.Iterator;
public interface AutocloseableIterator extends AutoCloseable, Iterator {
@Override
void close();
interface Factory extends Iterable {
@Override
AutocloseableIterator iterator();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy