org.deephacks.tools4j.config.query.ConfigResultSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools4j-config-api-runtime Show documentation
Show all versions of tools4j-config-api-runtime Show documentation
Runtime APIs of Tools4j Config
package org.deephacks.tools4j.config.query;
import java.util.Iterator;
/**
* A lazy evaluated result set iterator matching a certain query that created this
* result set. Items that are not iterated are not evaluated.
*
* @param type of configurable instances
*/
public abstract class ConfigResultSet implements Iterable {
public abstract Iterator iterator();
}