Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Collection; import java.util.HashMap; public class Main { public static boolean isNotNull(Collection<?> collection) { if (collection != null && collection.size() > 0) { return true; } return false; } public static boolean isNotNull(HashMap<?, ?> collection) { if (collection != null && collection.size() > 0) { return true; } return false; } }