码迷,mamicode.com
首页 > 其他好文 > 详细

判断对象是否为空 、 工具类

时间:2016-09-21 11:37:11      阅读:761      评论:0      收藏:0      [点我收藏+]

标签:

/**
     * 判断对象是否为空
     */
    public static boolean isEmpty(Object obj) {
        if (obj == null)
            return true;

        if (obj instanceof String)
            return StringUtils.isEmptyOrWhitespaceOnly((String) obj);
        if (obj instanceof Collection && ((Collection<?>) obj).isEmpty())
            return true;
        if (obj.getClass().isArray() && Array.getLength(obj) == 0)
            return true;
        if (obj instanceof Map && ((Map<?, ?>) obj).isEmpty())
            return true;

        return false;
    }

判断对象是否为空 、 工具类

标签:

原文地址:http://www.cnblogs.com/xjbBill/p/5891946.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!