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