类 ArraysTool
- java.lang.Object
-
- network.nerve.core.model.ArraysTool
-
public class ArraysTool extends Object
-
-
构造器概要
构造器 构造器 说明 ArraysTool()
-
方法概要
所有方法 静态方法 具体方法 修饰符和类型 方法 说明 static booleanarrayEquals(byte[] array1, byte[] array2)static byte[]concatenate(byte[]... arrays)按照传入的顺序拼接数组为一个包含所有数组的大数组 Splices the array into a large array containing all of the arrays in the incoming order.static booleanisEmptyOrNull(byte[] bytes)
-
-
-
方法详细资料
-
concatenate
public static final byte[] concatenate(byte[]... arrays)
按照传入的顺序拼接数组为一个包含所有数组的大数组 Splices the array into a large array containing all of the arrays in the incoming order.- 参数:
arrays- 想要拼接的数组集合、A collection of arrays that you want to concatenate.- 返回:
- 拼接结果、 the result of the Joining together
-
isEmptyOrNull
public static final boolean isEmptyOrNull(byte[] bytes)
-
arrayEquals
public static boolean arrayEquals(byte[] array1, byte[] array2)
-
-