Java tutorial
//package com.java2s; import java.util.Collection; public class Main { public static boolean isEmpty(Collection coll) { return coll == null || coll.isEmpty(); } public static boolean isEmpty(Object... objs) { return objs == null || objs.length <= 0; } }