本文整理了Java中cn.hutool.core.lang.Assert.state()
方法的一些代码示例,展示了Assert.state()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Assert.state()
方法的具体详情如下:
包路径:cn.hutool.core.lang.Assert
类名称:Assert
方法名:state
[英]检查boolean表达式,当检查结果为false时抛出 IllegalStateException。
Assert.state(id == null);
[中]检查布尔值表达式,当检查结果为错误的时抛出 非法州例外。
Assert.state(id == null);
代码示例来源:origin: looly/hutool
/**
* 检查boolean表达式,当检查结果为false时抛出 {@code IllegalStateException}。
*
* <pre class="code">
* Assert.state(id == null);
* </pre>
*
* @param expression boolean 表达式
* @throws IllegalStateException 表达式为 {@code false} 抛出此异常
*/
public static void state(boolean expression) throws IllegalStateException {
state(expression, "[Assertion failed] - this state invariant must be true");
}
代码示例来源:origin: looly/hutool
/**
* 检查boolean表达式,当检查结果为false时抛出 {@code IllegalStateException}。
*
* <pre class="code">
* Assert.state(id == null);
* </pre>
*
* @param expression boolean 表达式
* @throws IllegalStateException 表达式为 {@code false} 抛出此异常
*/
public static void state(boolean expression) throws IllegalStateException {
state(expression, "[Assertion failed] - this state invariant must be true");
}
代码示例来源:origin: cn.hutool/hutool-all
/**
* 检查boolean表达式,当检查结果为false时抛出 {@code IllegalStateException}。
*
* <pre class="code">
* Assert.state(id == null);
* </pre>
*
* @param expression boolean 表达式
* @throws IllegalStateException 表达式为 {@code false} 抛出此异常
*/
public static void state(boolean expression) throws IllegalStateException {
state(expression, "[Assertion failed] - this state invariant must be true");
}
内容来源于网络,如有侵权,请联系作者删除!