cn.hutool.core.lang.Assert.state()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(554)

本文整理了Java中cn.hutool.core.lang.Assert.state()方法的一些代码示例,展示了Assert.state()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Assert.state()方法的具体详情如下:
包路径:cn.hutool.core.lang.Assert
类名称:Assert
方法名:state

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");
}

相关文章