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

com.github.dakusui.actionunit.AutocloseableIterator Maven / Gradle / Ivy

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