Java tutorial
//package com.java2s; import java.util.Collection; public class Main { public static boolean isEmpty(Collection col) { if (col == null || col.size() == 0) { return true; } else { return false; } } }