All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.hdy.common.util.Assert Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.hdy.common.util;

import com.github.hdy.common.exceptions.CustomException;

import java.util.Collection;
import java.util.Map;

/**
 * 断言类
 *
 * @author 贺大爷
 * @date 2019/6/25
 */
public final class Assert {
    /**
     * 断言这个 boolean 为 true
     * 

为 false 则抛出异常

* * @param expression boolean 值 * @param message 消息 */ public static void isTrue(boolean expression, String message, Object... params) { if (!expression) { throw new CustomException(Strings.format(message, params)); } } /** * 断言这个 boolean 为 false *

为 true 则抛出异常

* * @param expression boolean 值 * @param message 消息 */ public static void isFalse(boolean expression, String message, Object... params) { isTrue(!expression, message, params); } /** * 断言这个 object 为 null *

不为 null 则抛异常

* * @param object 对象 * @param message 消息 */ public static void isNull(Object object, String message, Object... params) { isTrue(object == null, message, params); } /** * 断言这个 object 不为 null *

为 null 则抛异常

* * @param object 对象 * @param message 消息 */ public static void notNull(Object object, String message, Object... params) { isTrue(object != null, message, params); } /** * 断言这个 value 不为 empty *

为 empty 则抛异常

* * @param value 字符串 * @param message 消息 */ public static void notEmpty(String value, String message, Object... params) { isTrue(Strings.isNotEmpty(value), message, params); } /** * 断言这个 collection 不为 empty *

为 empty 则抛异常

* * @param collection 集合 * @param message 消息 */ public static void notEmpty(Collection collection, String message, Object... params) { isTrue(CollectionUtils.isNotEmpty(collection), message, params); } /** * 断言这个 map 不为 empty *

为 empty 则抛异常

* * @param map 集合 * @param message 消息 */ public static void notEmpty(Map map, String message, Object... params) { isTrue(CollectionUtils.isNotEmpty(map), message, params); } /** * 断言这个 数组 不为 empty *

为 empty 则抛异常

* * @param array 数组 * @param message 消息 */ public static void notEmpty(Object[] array, String message, Object... params) { isTrue(ArrayUtils.isNotEmpty(array), message, params); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy