Assert工具类

org.springframework.util.Assert工具类

1.介绍

Assert :“断言”,它断定某一个实际的运行值和预期想一样,否则就抛出异常。

2.可用于简化代码

数据合法性检查:

if (message== null || message.equls("")) {

throw new IllegalArgumentException("输入信息错误!");

}

使用Assert简化后:

Assert.hasText((message, "输入信息错误!");

3.常用API介绍

Assert.notNull(Object object, "object is required")    -    对象非空

Assert.isTrue(Object object, "object must be true")   -    对象必须为true

Assert.notEmpty(Collection collection, "collection must not be empty")    -    集合非空

Assert.hasLength(String text, "text must be specified")   -    字符不为null且字符长度不为0

Assert.hasText(String text, "text must not be empty")    -     text 不为null且必须至少包含一个非空格的字符

Assert.isInstanceOf(Class clazz, Object obj, "clazz must be of type [clazz]")    -    obj必须能被正确造型成为clazz 指定的类

4.API链接:

https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/util/Assert.html

你可能感兴趣的:(Assert工具类)