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

io.github.linmoure.utils.CollectionUtils Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.github.linmoure.utils;

import java.util.Collection;
import java.util.Map;

public abstract class CollectionUtils {

    public static boolean isEmpty(Map map) {
        return map == null || map.isEmpty();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy