co.streamx.fluent.JPA.vendor.TupleResultTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-jpa Show documentation
Show all versions of fluent-jpa Show documentation
Fluent query implementation for JPA repositories
The newest version!
package co.streamx.fluent.JPA.vendor;
import java.util.List;
public interface TupleResultTransformer {
T transformTuple(Object[] tuple,
String[] aliases);
List transformList(List collection);
}