Java tutorial
//package com.java2s; import java.util.Collection; public class Main { public static boolean hasElements(Collection<?> coll) { return coll != null && !coll.isEmpty(); } }