cn.tangjiabao.halodb.utils.array.ArrayUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.utils.array;
/**
*列表组件
* @author [email protected]
* @date 2015-6-14 下午10:28:06
*/
public class ArrayUtils{
public static boolean isEmpty(final Object[] array) {
return array == null || array.length == 0;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy