All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.lastwhisper.trace.common.util.CollectionUtil Maven / Gradle / Ivy

The newest version!
package cn.lastwhisper.trace.common.util;

import org.springframework.util.CollectionUtils;

import java.util.Collection;

/**
 * 集合工具类
 * @author lastwhisper
 * @date 2020/2/28
 */
public class CollectionUtil {

    public static boolean isNull(Collection collection) {
        return collection == null;
    }

    public static boolean isEmpty(Collection collection) {
        return CollectionUtils.isEmpty(collection);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy