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

org.deephacks.tools4j.config.query.ConfigResultSet Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy