
net.sf.esfinge.querybuilder.jpa1.ELFunctions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querybuilder-jpa1-local Show documentation
Show all versions of querybuilder-jpa1-local Show documentation
The Esfinge QueryBuilder JPA1 is the persistence framework for Esfinge QueryBuilder using JPA1.
The newest version!
package net.sf.esfinge.querybuilder.jpa1;
import java.util.Map;
public class ELFunctions {
public static boolean onlyNullValues(Map map) {
for(String key : map.keySet()){
if(map.get(key) != null)
return false;
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy