Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Open Source License
public class Main {
public static boolean isEmpty(Object obj) {
return null == obj || "".equals(obj.toString().trim()) || "null".equals(obj.toString().trim());
}
}