Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Map; public class Main { public static boolean checkMapIsNotEmpty(Map collection) { return (collection != null && collection.size() > 0); } }