Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static boolean isNotEmpty(final Collection<?> collection) { return !isEmpty(collection); } static boolean isEmpty(final Collection<?> collection) { return collection == null || collection.isEmpty(); } }