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

com.vladmihalcea.hibernate.type.util.ListResultTransformer Maven / Gradle / Ivy

There is a newer version: 2.21.1
Show newest version
package com.vladmihalcea.hibernate.type.util;

import org.hibernate.transform.ResultTransformer;

import java.util.List;

/**
 * The {@link com.vladmihalcea.hibernate.type.util.ListResultTransformer} simplifies the way
 * we can use a ResultTransformer by defining a default implementation for the
 * {@link ResultTransformer#transformList(List)} method.
 * 

* This way, the {@link com.vladmihalcea.hibernate.type.util.ListResultTransformer} can be used * as a functional interface. *

* For more details about how to use it, check out this article on vladmihalcea.com. * * @deprecated use {@link com.vladmihalcea.hibernate.query.ListResultTransformer} instead * * @author Vlad Mihalcea * @since 2.9.0 */ @Deprecated @FunctionalInterface public interface ListResultTransformer extends com.vladmihalcea.hibernate.query.ListResultTransformer { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy