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

com.github.lfopenjavaswagger2word.util.CollectionUtils Maven / Gradle / Ivy

There is a newer version: 1.0.2-RELEASE
Show newest version
package com.github.lfopenjavaswagger2word.util;

import java.util.Collection;

/**
 * @author : Mr huangye
 * URL : CSDN 皇夜_
 * createTime : 2020/7/18 15:16
 * Description :
 */
public class CollectionUtils {

    public static boolean isEmpty(Collection collection){
        return collection == null || collection.size()>0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy