Java tutorial
//package com.java2s; import java.util.Collection; public class Main { /** * @param col * @return */ public static boolean checkEmpty(Collection<?> col) { return null == col || col.isEmpty(); } }