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

net.sf.esfinge.querybuilder.jpa1.ELFunctions Maven / Gradle / Ivy

Go to download

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