ObjectUtils
ObjectUtils copied to clipboard
ObjectUtils
when you want check object(String, List, Map)
is empty or not, you can use this util
##How to use
Use it as Util anywhere. Use it like this:
if(ObjectUtils.isEmpty(aa)){
// Object is empty.
// do somthing
}
else{
// Object is not empty.
// do somthing
}