Java tutorial
//package com.java2s; import java.util.Collection; import java.util.Map; public class Main { public static boolean isEmptyMap(Map<Object, Object> map) { if (map == null || map.isEmpty()) { return true; } return false; } public static boolean isEmpty(Collection coll) { if (coll == null || coll.isEmpty()) { return true; } return false; } }