package UIM; public class Tools { public static boolean isEmpty(Object obj){ return obj == null || obj.toString().trim().equals(""); } }