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

io.github.ericdriggs.reportcard.xml.IsEmptyUtil Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package io.github.ericdriggs.reportcard.xml;

import java.util.Collection;

public enum IsEmptyUtil {
    ; //static methods only

    public static boolean isCollectionEmpty(Collection col) {
        if (col == null) {
            return true;
        }
        return col.isEmpty();
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy