添加注释
parent
91c30412de
commit
527b0f0980
12
pom.xml
12
pom.xml
|
@ -53,6 +53,18 @@
|
||||||
<version>5.9.2</version>
|
<version>5.9.2</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
|
<version>5.9.2</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-params</artifactId>
|
||||||
|
<version>5.9.2</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
|
|
|
@ -6,6 +6,16 @@ import java.lang.annotation.RetentionPolicy;
|
||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
import java.lang.annotation.Documented;
|
import java.lang.annotation.Documented;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* UnsupportedOperation
|
||||||
|
*
|
||||||
|
* <p>标识方法为不支持的操作。该方法将抛出 {@link UnsupportedOperationException}。
|
||||||
|
*
|
||||||
|
* @author zhouxy
|
||||||
|
* @version 1.0
|
||||||
|
* @since 1.0
|
||||||
|
* @see UnsupportedOperationException
|
||||||
|
*/
|
||||||
@Documented
|
@Documented
|
||||||
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
|
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
|
|
@ -30,68 +30,147 @@ public class ArrayTools {
|
||||||
|
|
||||||
// isNullOrEmpty
|
// isNullOrEmpty
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @param <T> 数组中元素的类型
|
||||||
|
* @return 如果数组为 {@code null} 或长度为 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static <T> boolean isNullOrEmpty(@Nullable T[] arr) {
|
public static <T> boolean isNullOrEmpty(@Nullable T[] arr) {
|
||||||
return arr == null || arr.length == 0;
|
return arr == null || arr.length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNullOrEmpty - float
|
// isNullOrEmpty - float
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组为 {@code null} 或长度为 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNullOrEmpty(@Nullable float[] arr) {
|
public static boolean isNullOrEmpty(@Nullable float[] arr) {
|
||||||
return arr == null || arr.length == 0;
|
return arr == null || arr.length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNullOrEmpty - double
|
// isNullOrEmpty - double
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组为 {@code null} 或长度为 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNullOrEmpty(@Nullable double[] arr) {
|
public static boolean isNullOrEmpty(@Nullable double[] arr) {
|
||||||
return arr == null || arr.length == 0;
|
return arr == null || arr.length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNullOrEmpty - byte
|
// isNullOrEmpty - byte
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组为 {@code null} 或长度为 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNullOrEmpty(@Nullable byte[] arr) {
|
public static boolean isNullOrEmpty(@Nullable byte[] arr) {
|
||||||
return arr == null || arr.length == 0;
|
return arr == null || arr.length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNullOrEmpty - long
|
// isNullOrEmpty - long
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组为 {@code null} 或长度为 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNullOrEmpty(@Nullable long[] arr) {
|
public static boolean isNullOrEmpty(@Nullable long[] arr) {
|
||||||
return arr == null || arr.length == 0;
|
return arr == null || arr.length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNullOrEmpty - int
|
// isNullOrEmpty - int
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组为 {@code null} 或长度为 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNullOrEmpty(@Nullable int[] arr) {
|
public static boolean isNullOrEmpty(@Nullable int[] arr) {
|
||||||
return arr == null || arr.length == 0;
|
return arr == null || arr.length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNotEmpty
|
// isNotEmpty
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否不为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @param <T> 数组中元素的类型
|
||||||
|
* @return 如果数组不为 {@code null} 且长度大于 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static <T> boolean isNotEmpty(@Nullable T[] arr) {
|
public static <T> boolean isNotEmpty(@Nullable T[] arr) {
|
||||||
return arr != null && arr.length > 0;
|
return arr != null && arr.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNotEmpty - float
|
// isNotEmpty - float
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否不为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组不为 {@code null} 且长度大于 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNotEmpty(@Nullable float[] arr) {
|
public static boolean isNotEmpty(@Nullable float[] arr) {
|
||||||
return arr != null && arr.length > 0;
|
return arr != null && arr.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNotEmpty - double
|
// isNotEmpty - double
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否不为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组不为 {@code null} 且长度大于 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNotEmpty(@Nullable double[] arr) {
|
public static boolean isNotEmpty(@Nullable double[] arr) {
|
||||||
return arr != null && arr.length > 0;
|
return arr != null && arr.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNotEmpty - byte
|
// isNotEmpty - byte
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否不为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组不为 {@code null} 且长度大于 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNotEmpty(@Nullable byte[] arr) {
|
public static boolean isNotEmpty(@Nullable byte[] arr) {
|
||||||
return arr != null && arr.length > 0;
|
return arr != null && arr.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNotEmpty - long
|
// isNotEmpty - long
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否不为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组不为 {@code null} 且长度大于 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNotEmpty(@Nullable long[] arr) {
|
public static boolean isNotEmpty(@Nullable long[] arr) {
|
||||||
return arr != null && arr.length > 0;
|
return arr != null && arr.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// isNotEmpty - int
|
// isNotEmpty - int
|
||||||
|
/**
|
||||||
|
* 检查给定数组是否不为空
|
||||||
|
*
|
||||||
|
* @param arr 待检查的数组,可以为 {@code null}
|
||||||
|
* @return 如果数组不为 {@code null} 且长度大于 0,则返回 {@code true};否则返回 {@code false}
|
||||||
|
*/
|
||||||
public static boolean isNotEmpty(@Nullable int[] arr) {
|
public static boolean isNotEmpty(@Nullable int[] arr) {
|
||||||
return arr != null && arr.length > 0;
|
return arr != null && arr.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// concat
|
// concat
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拼接多个数组
|
||||||
|
*
|
||||||
|
* @param arrays 数组集合,可以为 {@code null}
|
||||||
|
* @return 拼接后的数组
|
||||||
|
*/
|
||||||
public static float[] concatFloatArray(@Nullable Collection<float[]> arrays) {
|
public static float[] concatFloatArray(@Nullable Collection<float[]> arrays) {
|
||||||
if (arrays == null || arrays.isEmpty()) {
|
if (arrays == null || arrays.isEmpty()) {
|
||||||
return new float[0];
|
return new float[0];
|
||||||
|
@ -106,6 +185,12 @@ public class ArrayTools {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拼接多个数组
|
||||||
|
*
|
||||||
|
* @param arrays 数组集合,可以为 {@code null}
|
||||||
|
* @return 拼接后的数组
|
||||||
|
*/
|
||||||
public static double[] concatDoubleArray(@Nullable Collection<double[]> arrays) {
|
public static double[] concatDoubleArray(@Nullable Collection<double[]> arrays) {
|
||||||
if (arrays == null || arrays.isEmpty()) {
|
if (arrays == null || arrays.isEmpty()) {
|
||||||
return new double[0];
|
return new double[0];
|
||||||
|
@ -120,6 +205,12 @@ public class ArrayTools {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拼接多个数组
|
||||||
|
*
|
||||||
|
* @param arrays 数组集合,可以为 {@code null}
|
||||||
|
* @return 拼接后的数组
|
||||||
|
*/
|
||||||
public static byte[] concatByteArray(@Nullable Collection<byte[]> arrays) {
|
public static byte[] concatByteArray(@Nullable Collection<byte[]> arrays) {
|
||||||
if (arrays == null || arrays.isEmpty()) {
|
if (arrays == null || arrays.isEmpty()) {
|
||||||
return new byte[0];
|
return new byte[0];
|
||||||
|
@ -134,6 +225,12 @@ public class ArrayTools {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拼接多个数组
|
||||||
|
*
|
||||||
|
* @param arrays 数组集合,可以为 {@code null}
|
||||||
|
* @return 拼接后的数组
|
||||||
|
*/
|
||||||
public static long[] concatLongArray(@Nullable Collection<long[]> arrays) {
|
public static long[] concatLongArray(@Nullable Collection<long[]> arrays) {
|
||||||
if (arrays == null || arrays.isEmpty()) {
|
if (arrays == null || arrays.isEmpty()) {
|
||||||
return new long[0];
|
return new long[0];
|
||||||
|
@ -148,6 +245,12 @@ public class ArrayTools {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拼接多个数组
|
||||||
|
*
|
||||||
|
* @param arrays 数组集合,可以为 {@code null}
|
||||||
|
* @return 拼接后的数组
|
||||||
|
*/
|
||||||
public static int[] concatIntArray(@Nullable Collection<int[]> arrays) {
|
public static int[] concatIntArray(@Nullable Collection<int[]> arrays) {
|
||||||
if (arrays == null || arrays.isEmpty()) {
|
if (arrays == null || arrays.isEmpty()) {
|
||||||
return new int[0];
|
return new int[0];
|
||||||
|
@ -162,15 +265,28 @@ public class ArrayTools {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 将集合中的数组连接为一个列表
|
||||||
|
*
|
||||||
|
* @param arrays 可能包含多个数组的集合,这些数组中的元素将被连接到一个列表中
|
||||||
|
* @param <T> 泛型参数,表示数组的元素类型
|
||||||
|
* @return 返回连接后的列表,如果输入的集合为空或包含空数组,则返回空列表
|
||||||
|
*/
|
||||||
public static <T> List<T> concatToList(@Nullable Collection<T[]> arrays) {
|
public static <T> List<T> concatToList(@Nullable Collection<T[]> arrays) {
|
||||||
|
// 如果输入的集合是否为空,则直接返回一个空列表
|
||||||
if (arrays == null || arrays.isEmpty()) {
|
if (arrays == null || arrays.isEmpty()) {
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 计算所有数组的总长度,用于初始化列表的容量
|
||||||
final int length = arrays.stream().mapToInt(a -> a.length).sum();
|
final int length = arrays.stream().mapToInt(a -> a.length).sum();
|
||||||
final List<T> result = new ArrayList<>(length);
|
final List<T> result = new ArrayList<>(length);
|
||||||
|
|
||||||
for (T[] arr : arrays) {
|
for (T[] arr : arrays) {
|
||||||
Collections.addAll(result, arr);
|
Collections.addAll(result, arr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 返回连接后的列表
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ public final class EnumTools {
|
||||||
* @deprecated 不推荐使用枚举的 ordinal。
|
* @deprecated 不推荐使用枚举的 ordinal。
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static <E extends Enum<?>> E valueOf(Class<E> clazz, int ordinal) {
|
public static <E extends Enum<?>> E valueOf(Class<E> clazz, int ordinal) { // NOSONAR 该方法弃用,但不删掉
|
||||||
Preconditions.checkNotNull(clazz, "Clazz must not be null.");
|
Preconditions.checkNotNull(clazz, "Clazz must not be null.");
|
||||||
E[] values = clazz.getEnumConstants();
|
E[] values = clazz.getEnumConstants();
|
||||||
PreconditionsExt.check((ordinal >= 0 && ordinal < values.length),
|
PreconditionsExt.check((ordinal >= 0 && ordinal < values.length),
|
||||||
|
@ -62,7 +62,7 @@ public final class EnumTools {
|
||||||
* @deprecated 不推荐使用枚举的 ordinal。
|
* @deprecated 不推荐使用枚举的 ordinal。
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static <E extends Enum<?>> E valueOf(Class<E> clazz, @Nullable Integer ordinal, E defaultValue) {
|
public static <E extends Enum<?>> E valueOf(Class<E> clazz, @Nullable Integer ordinal, E defaultValue) { // NOSONAR 该方法弃用,但不删掉
|
||||||
if (null == ordinal) {
|
if (null == ordinal) {
|
||||||
return defaultValue;
|
return defaultValue;
|
||||||
}
|
}
|
||||||
|
@ -80,7 +80,7 @@ public final class EnumTools {
|
||||||
* @deprecated 不推荐使用枚举的 ordinal。
|
* @deprecated 不推荐使用枚举的 ordinal。
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static <E extends Enum<?>> E getValueOrDefault(
|
public static <E extends Enum<?>> E getValueOrDefault( // NOSONAR 该方法弃用,但不删掉
|
||||||
Class<E> clazz,
|
Class<E> clazz,
|
||||||
@Nullable Integer ordinal,
|
@Nullable Integer ordinal,
|
||||||
Supplier<E> defaultValue) {
|
Supplier<E> defaultValue) {
|
||||||
|
@ -100,7 +100,7 @@ public final class EnumTools {
|
||||||
* @deprecated 不推荐使用枚举的 ordinal。
|
* @deprecated 不推荐使用枚举的 ordinal。
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static <E extends Enum<?>> E getValueOrDefault(Class<E> clazz, @Nullable Integer ordinal) {
|
public static <E extends Enum<?>> E getValueOrDefault(Class<E> clazz, @Nullable Integer ordinal) { // NOSONAR 该方法弃用,但不删掉
|
||||||
return getValueOrDefault(clazz, ordinal, () -> {
|
return getValueOrDefault(clazz, ordinal, () -> {
|
||||||
Preconditions.checkNotNull(clazz, "Clazz must not be null.");
|
Preconditions.checkNotNull(clazz, "Clazz must not be null.");
|
||||||
E[] values = clazz.getEnumConstants();
|
E[] values = clazz.getEnumConstants();
|
||||||
|
@ -118,7 +118,7 @@ public final class EnumTools {
|
||||||
* @deprecated 不推荐使用枚举的 ordinal。
|
* @deprecated 不推荐使用枚举的 ordinal。
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static <E extends Enum<?>> E getValueNullable(Class<E> clazz, @Nullable Integer ordinal) {
|
public static <E extends Enum<?>> E getValueNullable(Class<E> clazz, @Nullable Integer ordinal) { // NOSONAR 该方法弃用,但不删掉
|
||||||
return valueOf(clazz, ordinal, null);
|
return valueOf(clazz, ordinal, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue