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

foundation.jpa.querydsl.EntityConverter Maven / Gradle / Ivy

There is a newer version: 0.29
Show newest version
package foundation.jpa.querydsl;

public interface EntityConverter {

    Object convert(Object constant, Class type);

    static EntityConverter noConversion() {
        return (constant, type) -> constant;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy