groovyx.gaelyk.query.QueryResultIterableWithQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaelyk Show documentation
Show all versions of gaelyk Show documentation
Gaelyk is a lightweight toolkit for developing applications in Groovy for the Google App Engine environment.
package groovyx.gaelyk.query;
import com.google.appengine.api.datastore.Query;
import com.google.appengine.api.datastore.QueryResultIterable;
/**
* Query result iterable wrapper which gives access to the original query.
*
* @author Vladimir Orany
*
* @param element type
*/
public interface QueryResultIterableWithQuery extends QueryResultIterable {
/**
* Returns query used to create this result iterable.
* @return query used to create this result iterable
*/
Query getQuery();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy