
zikai.apijson.core.CollectionUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zikai-apijson Show documentation
Show all versions of zikai-apijson Show documentation
apijson的简化版本,升级fastjson到2.0
The newest version!
package zikai.apijson.core;
import java.util.Collection;
import java.util.Map;
public class CollectionUtils {
public static boolean isEmpty(Map target) {
return target == null || target.isEmpty();
}
public static boolean isNotEmpty(Map target) {
return !isEmpty(target);
}
public static boolean isEmpty(Collection target) {
return target == null || target.isEmpty();
}
public static boolean isNotEmpty(Collection target) {
return !isEmpty(target);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy