All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emily.infrastructure.common.ArrayUtils Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package com.emily.infrastructure.common;

/**
 * 数组工具类
 *
 * @author Emily
 * @since Created in 2023/6/9 3:57 PM
 */
public class ArrayUtils {
    /**
     * 不可变byte空数组
     */
    public static final byte[] EMPTY_BYTE_ARRAY = new byte[0];
    /**
     * 字符串空数组
     */
    public static final String[] EMPTY_STRING_ARRAY = new String[0];
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy