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

com.gitee.apanlh.util.unit.TimeUnit Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
package com.gitee.apanlh.util.unit;

/**	
 * 	时间单位
 * 	#mark 待补充
 * 	@author Pan
 */
public enum TimeUnit {
	
	/** 毫秒 */
	MILLISECONDS("ms"),
	/** 秒 */
	SECONDS("s"),
	/** 分钟 */
	MIN("m"),
	/** 小时 */
	HOURS("h"),
	/** 天 */
	DAYS("D"),
	/** 星期 */
	WEEK("W"),
	/** 月 */
	MONTH("M"),
	/** 季度 */
	QUARTERLY("Q"),
	/** 年 */
	YEAR("Y");
	
	/** 时间单位 */
	private String unit;
	
	TimeUnit(String unit) {
		this.unit = unit;
	}

	public String getUnit() {
		return unit;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy