Java tutorial
//package com.java2s; import java.util.Collection; public class Main { public static boolean isNotEmpty(Collection coll) { return !isEmpty(coll); } public static boolean isEmpty(Collection coll) { return (coll == null || coll.isEmpty()); } }