Enum Month
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Mois
Énumération représentant les mois de l'année.
Pour appeler une énumération, vous devez appeler sa classe parente, son nom et sa propriété. Par exemple,
Base.Month.JANUARY
.
Propriétés
Propriété | Type | Description |
JANUARY | Enum | Janvier (mois 1). |
FEBRUARY | Enum | Février (mois 2). |
MARCH | Enum | Mars (mois 3). |
APRIL | Enum | Avril (mois 4). |
MAY | Enum | Mai (mois 5). |
JUNE | Enum | Juin (mois 6). |
JULY | Enum | Juillet (mois 7). |
AUGUST | Enum | Août (mois 8). |
SEPTEMBER | Enum | Septembre (mois 9). |
OCTOBER | Enum | Octobre (mois 10). |
NOVEMBER | Enum | Novembre (mois 11). |
DECEMBER | Enum | Décembre (mois 12). |
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[null,null,["Dernière mise à jour le 2025/07/26 (UTC)."],[[["\u003cp\u003e\u003ccode\u003eMonth\u003c/code\u003e is an enum that represents the twelve months of the year.\u003c/p\u003e\n"],["\u003cp\u003eTo access a specific month, use the syntax \u003ccode\u003eBase.Month.[MONTH_NAME]\u003c/code\u003e, for example, \u003ccode\u003eBase.Month.JANUARY\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eEach month is represented by an \u003ccode\u003eEnum\u003c/code\u003e property within the \u003ccode\u003eMonth\u003c/code\u003e enum, providing a standardized way to refer to specific months.\u003c/p\u003e\n"]]],[],null,["# Enum Month\n\nMonth\n\nAn enum representing the months of the year.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nBase.Month.JANUARY`. \n\n### Properties\n\n| Property | Type | Description |\n|-------------|--------|----------------------|\n| `JANUARY` | `Enum` | January (month 1). |\n| `FEBRUARY` | `Enum` | February (month 2). |\n| `MARCH` | `Enum` | March (month 3). |\n| `APRIL` | `Enum` | April (month 4). |\n| `MAY` | `Enum` | May (month 5). |\n| `JUNE` | `Enum` | June (month 6). |\n| `JULY` | `Enum` | July (month 7). |\n| `AUGUST` | `Enum` | August (month 8). |\n| `SEPTEMBER` | `Enum` | September (month 9). |\n| `OCTOBER` | `Enum` | October (month 10). |\n| `NOVEMBER` | `Enum` | November (month 11). |\n| `DECEMBER` | `Enum` | December (month 12). |"]]