数据判断工具类
解决数据判断频繁使用if else 判断的工具类
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
/**
-
数据判断
-
@author 编写人:刘义
-
@date 时间:2019年3月6日下午2:34:07
*/
public class EmtryUtil {/**
* 判断字符串不为空
* @param str
* @return
*/
public static boolean notEmpty(String str){
//StringUtils.isNotEmpty(str);
return str != null && !"".equals(str);
}/** * 判断字符串不为空 * jdk StringUtils工具类实现如下所示 * @param str * @return */ public static boolean isNotEmpty(String str){ return !isEmpty(str); } /** * 判断字符串为空 * @param str * @return */ public static boolean isEmpty(String str){ return str == null || str.length() == 0; } /** * 集合判断是否为空 * @param collection 使用泛型 * @return */ public static <T> boolean notEmpty(Collection<T> collection){ if(collection != null){ Iterator<T> iterator = collection.iterator(); if(iterator != null){ while(iterator.hasNext()){ Object next = iterator.next(); if(next != null){ return true; } } } } return false; } /** * map集合不为空的判断 * @param map 使用泛型,可以传递不同的类型参数 * @return */ public static <T> boolean notEmpty(Map<T, T> map){ return map != null && !map.isEmpty(); } /** * byte类型数组判断不为空 * @param t * @return */ public static boolean notEmpty(byte[] t){ return t != null && t.length > 0; } /** * short类型数组不为空判断 * @param t * @return */ public static boolean notEmpty(short[] t){ return t != null && t.length > 0; } /** * 数组判断不为空,没有泛型数组,所以还是分开写吧 * @param t 可以是int,short,byte,String,Object,long * @return */ public static boolean notEmpty(int[] t){ return t != null && t.length > 0; } /** * long类型数组不为空 * @param t * @return */ public static boolean notEmpty(long[] t){ return t != null && t.length > 0; } /** * String类型的数组不为空 * @param t * @return */ public static boolean notEmpty(String[] t){ return t != null && t.length > 0; } /** * Object类型数组不为空 * @param t * @return */ public static boolean notEmpty(Object[] t){ return t != null && t.length > 0; } /** * * @param o * @return */ public static boolean notEmpty(Object o){ return o != null && !"".equals(o) && !"null".equals(o); }
}