cn.featherfly.common.model.enums.TimeRange Maven / Gradle / Ivy
The newest version!
package cn.featherfly.common.model.enums;
import cn.featherfly.common.model.Property;
/**
* TimeRange.
*
* @author zhongj
*/
public enum TimeRange implements Property {
/** The day. */
DAY,
/** The week. */
WEEK,
/** The month. */
MONTH,
/** The quarter. */
QUARTER,
/** The half year. */
HALF_YEAR,
/** The year. */
YEAR;
/**
* {@inheritDoc}
*/
@Override
public Integer value() {
return ordinal();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy