Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isObjectNotEmpty(Object obj) {
if (null != obj && !"".equals(obj.toString()) && !"null".equals(obj.toString().toLowerCase())) {
return true;
} else {
return false;
}
}
}