io.katharsis.jpa.query.Tuple Maven / Gradle / Ivy
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