Here you can find the source of isNotEmptyCollection(Object[] objs)
public static boolean isNotEmptyCollection(Object[] objs)
//package com.java2s; //License from project: Artistic License import java.util.List; public class Main { public static boolean isNotEmptyCollection(Object[] objs) { return objs != null && objs.length > 0; }/*from www.j a v a 2 s . c o m*/ public static boolean isNotEmptyCollection(List<?> objs) { return objs != null && objs.size() > 0; } }