Enum Month
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
月
月を表す列挙型。
列挙型を呼び出すには、親クラス、名前、プロパティを呼び出します。たとえば、
Base.Month.JANUARY
のようにします。
プロパティ
プロパティ | 種類 | 説明 |
JANUARY | Enum | 1 月(1 か月目) |
FEBRUARY | Enum | 2 月(2 か月目) |
MARCH | Enum | 3 月(3 か月目) |
APRIL | Enum | 4 月(4 か月目) |
MAY | Enum | 5 月(5 か月目) |
JUNE | Enum | 6 月(6 か月目) |
JULY | Enum | 7 月(7 か月目) |
AUGUST | Enum | 8 月(8 か月目) |
SEPTEMBER | Enum | 9 月(9 か月目) |
OCTOBER | Enum | 10 月(10 か月目) |
NOVEMBER | Enum | 11 月(11 か月目) |
DECEMBER | Enum | 12 月(12 か月目) |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 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). |"]]