com.anaptecs.spring.base.TimeUnit Maven / Gradle / Ivy
/*
* anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
*
* Copyright 2004 - 2019. All rights reserved.
*/
package com.anaptecs.spring.base;
/**
* Enumeration represents time units.
*
* NOVA 14 Mapping
*
*
* - nova-base.xsd.ZeitEinheit
*
*
* @author JEAF Generator
* @version JEAF Release 1.4.x
*/
public enum TimeUnit {
/**
* Literal represents time unit "minutes".
*/
MINUTE, HOUR, DAY,
/**
* Literal represents time unit "weeks".
* This is the comments second line ;-)
*/
WEEK, MONTH, YEAR;
}