Enum Month
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Mese
Un'enum che rappresenta i mesi dell'anno.
Per chiamare un'enumerazione, devi chiamare la classe, il nome e la proprietà principali. Ad esempio,
Base.Month.JANUARY
.
Proprietà
Proprietà | Tipo | Descrizione |
JANUARY | Enum | gennaio (1° mese). |
FEBRUARY | Enum | Febbraio (2° mese). |
MARCH | Enum | Marzo (3° mese). |
APRIL | Enum | Aprile (4° mese). |
MAY | Enum | Maggio (mese 5). |
JUNE | Enum | Giugno (6 mese). |
JULY | Enum | luglio (7° mese). |
AUGUST | Enum | agosto (8° mese). |
SEPTEMBER | Enum | settembre (9 mese). |
OCTOBER | Enum | Ottobre (10 mese). |
NOVEMBER | Enum | novembre (11 mese). |
DECEMBER | Enum | dicembre (12 mese). |
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-26 UTC.
[null,null,["Ultimo aggiornamento 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). |"]]