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

io.katharsis.jpa.query.Tuple Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.jpa.query;

public interface Tuple {

	public  T get(String name, Class clazz);

	public  T get(int index, Class clazz);

	/**
	 * Ignores the given number of entries by incrementing any index access accordingly.
	 * 
	 * @param numEntriesToIgnore for this tuple
	 */
	public void reduce(int numEntriesToIgnore);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy