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

com.enterprisemath.utils.Month Maven / Gradle / Ivy

Go to download

Collection of utility classes for large scale projects focusing on robust and testable code.

There is a newer version: 4.1.1
Show newest version
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