Enum Weekday
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
平日
曜日を表す列挙型。
列挙型を呼び出すには、親クラス、名前、プロパティを呼び出します。たとえば、
Base.Weekday.SUNDAY
のようにします。
プロパティ
プロパティ | 種類 | 説明 |
SUNDAY | Enum | Sunday |
MONDAY | Enum | 月曜日 |
TUESDAY | Enum | 火曜日 |
WEDNESDAY | Enum | 水曜日 |
THURSDAY | Enum | 木曜日 |
FRIDAY | Enum | 金曜日 |
SATURDAY | Enum | 指定します。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-28 UTC。
[null,null,["最終更新日 2025-07-28 UTC。"],[[["\u003cp\u003e\u003ccode\u003eWeekday\u003c/code\u003e is an enum that represents the seven days of the week.\u003c/p\u003e\n"],["\u003cp\u003eTo access a specific day, use the syntax \u003ccode\u003eBase.Weekday.[DAY]\u003c/code\u003e, replacing \u003ccode\u003e[DAY]\u003c/code\u003e with the desired day (e.g., \u003ccode\u003eBase.Weekday.MONDAY\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eEach day of the week is represented by a corresponding property within the \u003ccode\u003eWeekday\u003c/code\u003e enum.\u003c/p\u003e\n"]]],[],null,["# Enum Weekday\n\nWeekday\n\nAn enum representing the days of the week.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nBase.Weekday.SUNDAY`. \n\n### Properties\n\n| Property | Type | Description |\n|-------------|--------|-------------|\n| `SUNDAY` | `Enum` | Sunday. |\n| `MONDAY` | `Enum` | Monday. |\n| `TUESDAY` | `Enum` | Tuesday. |\n| `WEDNESDAY` | `Enum` | Wednesday. |\n| `THURSDAY` | `Enum` | Thursday. |\n| `FRIDAY` | `Enum` | Friday. |\n| `SATURDAY` | `Enum` | Saturday. |"]]