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