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

io.github.mapper.excel.util.CollectionUtils Maven / Gradle / Ivy

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