Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.Collection; import java.util.Map; public class Main { public static boolean isEmpty(Collection c) { return c == null || c.isEmpty(); } public static boolean isEmpty(Map<?, ?> m) { return m == null || m.isEmpty(); } }