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

groovyx.gaelyk.query.QueryResultIterableWithQuery Maven / Gradle / Ivy

Go to download

Gaelyk is a lightweight toolkit for developing applications in Groovy for the Google App Engine environment.

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