|
@@ -88,9 +88,9 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils {
|
|
|
* @param coll 要判断的Collection
|
|
|
* @return true:为空 false:非空
|
|
|
*/
|
|
|
-// public static boolean isEmpty(Collection<?> coll) {
|
|
|
-// return isNull(coll) || coll.isEmpty();
|
|
|
-// }
|
|
|
+ public static boolean isEmpty(Collection<?> coll) {
|
|
|
+ return isNull(coll) || coll.isEmpty();
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* * 判断一个Collection是否非空,包含List,Set,Queue
|
|
@@ -108,9 +108,9 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils {
|
|
|
* @param objects 要判断的对象数组
|
|
|
* * @return true:为空 false:非空
|
|
|
*/
|
|
|
-// public static boolean isEmpty(Object[] objects) {
|
|
|
-// return isNull(objects) || (objects.length == 0);
|
|
|
-// }
|
|
|
+ public static boolean isEmpty(Object[] objects) {
|
|
|
+ return isNull(objects) || (objects.length == 0);
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* * 判断一个对象数组是否非空
|
|
@@ -128,9 +128,9 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils {
|
|
|
* @param map 要判断的Map
|
|
|
* @return true:为空 false:非空
|
|
|
*/
|
|
|
-// public static boolean isEmpty(Map<?, ?> map) {
|
|
|
-// return isNull(map) || map.isEmpty();
|
|
|
-// }
|
|
|
+ public static boolean isEmpty(Map<?, ?> map) {
|
|
|
+ return isNull(map) || map.isEmpty();
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* * 判断一个Map是否为空
|
|
@@ -148,9 +148,9 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils {
|
|
|
* @param str String
|
|
|
* @return true:为空 false:非空
|
|
|
*/
|
|
|
-// public static boolean isEmpty(String str) {
|
|
|
-// return isNull(str) || NULLSTR.equals(str.trim());
|
|
|
-// }
|
|
|
+ public static boolean isEmpty(String str) {
|
|
|
+ return isNull(str) || NULLSTR.equals(str.trim());
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* * 判断一个字符串是否为非空串
|