![JAR search and dependency download from the Maven repository](/logo.png)
io.github.mapper.excel.util.CollectionUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-object-mapper Show documentation
Show all versions of excel-object-mapper Show documentation
This Project is mapping excel row to object model
The newest version!
/*
* code https://github.com/mohsen-mahmoudi/excel-object-mapping
*/
package io.github.mapper.excel.util;
import java.util.Collection;
/**
* @author redcrow
*/
public class CollectionUtils {
public static boolean isEmpty(Collection collection) {
return collection == null || collection.isEmpty();
}
public static boolean isEmpty(Object[] object) {
return object == null || object.length < 1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy