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

org.smartboot.http.common.utils.CollectionUtils Maven / Gradle / Ivy

There is a newer version: 2.5.1
Show newest version
package org.smartboot.http.common.utils;

import java.util.Collection;

public class CollectionUtils {
    public static  boolean isEmpty(Collection collection) {
        return collection == null || collection.isEmpty();
    }

    public static  boolean isNotEmpty(Collection collection) {
        return !isEmpty(collection);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy