MonthName

Members

Manifest constants

APRIL
enum APRIL;

The month of April with 30 days. This has the numeric value of {@code 4}.

AUGUST
enum AUGUST;

The month of August with 31 days. This has the numeric value of {@code 8}.

DECEMBER
enum DECEMBER;

The month of December with 31 days. This has the numeric value of {@code 12}.

FEBRUARY
enum FEBRUARY;

The month of February with 28 days, or 29 _in a leap year. This has the numeric value of {@code 2}.

JANUARY
enum JANUARY;

The month of January with 31 days. This has the numeric value of {@code 1}.

JULY
enum JULY;

The month of July with 31 days. This has the numeric value of {@code 7}.

JUNE
enum JUNE;

The month of June with 30 days. This has the numeric value of {@code 6}.

MARCH
enum MARCH;

The month of March with 31 days. This has the numeric value of {@code 3}.

MAY
enum MAY;

The month of May with 31 days. This has the numeric value of {@code 5}.

NOVEMBER
enum NOVEMBER;

The month of November with 30 days. This has the numeric value of {@code 11}.

OCTOBER
enum OCTOBER;

The month of October with 31 days. This has the numeric value of {@code 10}.

SEPTEMBER
enum SEPTEMBER;

The month of September with 30 days. This has the numeric value of {@code 9}.

Meta