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

coo.base.constants.Measure Maven / Gradle / Ivy

package coo.base.constants;

/**
 * 计量用的常量。
 */
public abstract class Measure {
	/** K字节数 */
	public static final Integer K = 1024;
	/** M字节数 */
	public static final Integer M = 1024 * K;
	/** G字节数 */
	public static final Integer G = 1024 * M;
	/** T字节数 */
	public static final Integer T = 1024 * G;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy