![JAR search and dependency download from the Maven repository](/logo.png)
net.abc.tool.util.date.ETimeUnit Maven / Gradle / Ivy
package net.abc.tool.util.date;
/**
* @Auther: zhangwei
* @Description:
* @Date: Created in 上午10:43 2018/7/26
*/
public enum ETimeUnit {
DAY(1),
WEEK(2),
TENDAYS(3),
MONTH(4),
SEASON(5),
YEAR(6);
private int value;
ETimeUnit(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy