com.networknt.utility.CollectionUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utility Show documentation
Show all versions of utility Show documentation
A utility module that contains all the utilities shared across other modules.
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