StringUtils,CollectionUtils,ObjectUtils,ClassUtils的区别
https://blog.csdn.net/mochi_li/article/details/84992273
StringUtils:主要是针对String类型的判断,
有个isBlank方法主要是判断字符串是否为空或长度为0或由空白符构成
有个isEmpty方法主要是判断某字符串是否为空,为空的标准是str==null或str.length==0
https://www.cnblogs.com/mr-wuxiansheng/p/7500487.html
CollectionUtils:主要针对集合的isEmpty判断。
https://www.cnblogs.com/mr-wuxiansheng/p/7500560.html
ObjectUtils同理对应的是对象
https://blog.csdn.net/han12398766/article/details/104029981
ClassUtils比较强大,下面这个链接可以稍微看下
https://www.jianshu.com/p/dc104d635fac