Enum Month
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Ay
Yılın aylarını temsil eden bir sıralama.
Bir enum'u çağırmak için üst sınıfını, adını ve özelliğini çağırırsınız. Örneğin,
Base.Month.JANUARY
.
Özellikler
Özellik | Tür | Açıklama |
JANUARY | Enum | Ocak (1. ay). |
FEBRUARY | Enum | Şubat (2. ay). |
MARCH | Enum | Mart (3. ay). |
APRIL | Enum | Nisan (4. ay). |
MAY | Enum | Mayıs (5. ay). |
JUNE | Enum | Haziran (6. ay). |
JULY | Enum | Temmuz (7 ay). |
AUGUST | Enum | Ağustos (8 ay). |
SEPTEMBER | Enum | Eylül (9 ay). |
OCTOBER | Enum | Ekim (10 ay). |
NOVEMBER | Enum | Kasım (11 ay). |
DECEMBER | Enum | Aralık (12. ay). |
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-26 UTC.
[null,null,["Son güncelleme tarihi: 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). |"]]