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

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

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

Assert.noNullElements介绍

[英]断言给定数组是否不包含 null元素,如果数组为空或 null将被认为不包含

Assert.noNullElements(array);

[中]断言给定数组是否不包含 无效的元素,如果数组为空或 无效的将被认为不包含

Assert.noNullElements(array);

代码示例

代码示例来源:origin: looly/hutool

/**
 * 断言给定数组是否不包含{@code null}元素,如果数组为空或 {@code null}将被认为不包含
 * 
 * <pre class="code">
 * Assert.noNullElements(array);
 * </pre>
 * 
 * @param <T> 数组元素类型
 * @param array 被检查的数组
 * @return 被检查的数组
 * @throws IllegalArgumentException if the object array contains a {@code null} element
 */
public static <T> T[] noNullElements(T[] array) throws IllegalArgumentException {
  return noNullElements(array, "[Assertion failed] - this array must not contain any null elements");
}

代码示例来源:origin: looly/hutool

/**
 * 断言给定数组是否不包含{@code null}元素,如果数组为空或 {@code null}将被认为不包含
 * 
 * <pre class="code">
 * Assert.noNullElements(array);
 * </pre>
 * 
 * @param <T> 数组元素类型
 * @param array 被检查的数组
 * @return 被检查的数组
 * @throws IllegalArgumentException if the object array contains a {@code null} element
 */
public static <T> T[] noNullElements(T[] array) throws IllegalArgumentException {
  return noNullElements(array, "[Assertion failed] - this array must not contain any null elements");
}

代码示例来源:origin: cn.hutool/hutool-all

/**
 * 断言给定数组是否不包含{@code null}元素,如果数组为空或 {@code null}将被认为不包含
 * 
 * <pre class="code">
 * Assert.noNullElements(array);
 * </pre>
 * 
 * @param <T> 数组元素类型
 * @param array 被检查的数组
 * @return 被检查的数组
 * @throws IllegalArgumentException if the object array contains a {@code null} element
 */
public static <T> T[] noNullElements(T[] array) throws IllegalArgumentException {
  return noNullElements(array, "[Assertion failed] - this array must not contain any null elements");
}

相关文章