io.github.ericdriggs.reportcard.xml.IsEmptyUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reportcard-model Show documentation
Show all versions of reportcard-model Show documentation
test report metrics and trend analysis reporting :: reportcard-model
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