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

com.weicoder.common.constants.ArrayConstants Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.weicoder.common.constants;

/**
 * 数组常量
 * @author WD
 */
public final class ArrayConstants {
	/** 一个空的字节数组 */
	public final static byte[]		BYTES_EMPTY		= new byte[0];
	/** 一个空的字符串数组 */
	public final static String[]	STRING_EMPTY	= new String[0];

	private ArrayConstants() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy