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

com.networknt.utility.CollectionUtil Maven / Gradle / Ivy

Go to download

A utility module that contains all the utilities shared across other modules.

There is a newer version: 2.1.38
Show newest version
package com.networknt.utility;

import java.util.Collection;

/**
 * Utility to deal with collection
 *
 * @author Steve Hu
 */
public class CollectionUtil {
    @SuppressWarnings("rawtypes")
    public static boolean isEmpty(Collection collection) {
        return collection == null || collection.size() == 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy