com.enterprisemath.utils.Month Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-utils Show documentation
Show all versions of em-utils Show documentation
Collection of utility classes for large scale projects focusing on robust and testable code.
package com.enterprisemath.utils;
/**
* Enumerates all months of the year in the Gregorian calendar.
*
* @author radek.hecl
*
*/
public enum Month {
/**
* January.
*/
JANUARY,
/**
* February.
*/
FEBRUARY,
/**
* March.
*/
MARCH,
/**
* April.
*/
APRIL,
/**
* May.
*/
MAY,
/**
* June.
*/
JUNE,
/**
* July.
*/
JULY,
/**
* August.
*/
AUGUST,
/**
* September.
*/
SEPTEMBER,
/**
* October.
*/
OCTOBER,
/**
* November.
*/
NOVEMBER,
/**
* December.
*/
DECEMBER
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy