Java tutorial
//package com.java2s; import java.util.Hashtable; public class Main { public static boolean emptyHash(Hashtable hash) { boolean result = true; if ((hash != null) && (hash.size() > 0)) { result = false; } return result; } }