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

com.github.yooryan.advancequery.toolkit.CollectionUtils Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.yooryan.advancequery.toolkit;

import java.util.Collection;

/**
 * @author linyunrui
 */
public class CollectionUtils {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy