com.branch.cos.utils.CollectionUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of branch_cos_api Show documentation
Show all versions of branch_cos_api Show documentation
branch java sdk for qcloud cos
The newest version!
package com.branch.cos.utils;
import java.util.Collection;
public class CollectionUtils {
public static boolean isNullOrEmpty(Collection collection) {
return collection == null || collection.isEmpty();
}
}