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

com.jaregu.database.queries.building.IteratorResolver Maven / Gradle / Ivy

Go to download

Java based SQL templating project. Store your queries in *.sql files and build queries for execution. Supports simple expressions and conditional clauses and interface proxying for java-sql bridge.

There is a newer version: 1.4.1
Show newest version
package com.jaregu.database.queries.building;

import java.util.Iterator;

public interface IteratorResolver extends Iterator {

	static IteratorResolver of(Iterable parameters) {
		return new IteratorResolverImpl(parameters);
	}
}