Date
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
誕生日などのように、カレンダーの日付全体またはその一部を表します。時間帯とタイムゾーンは、他の場所で指定されているか、重要ではありません。日付はグレゴリオ暦を基準にしています。これは次のいずれかを表します。
- ゼロ以外の年、月、日の値を含む完全な日付
- 記念日など、年がゼロである月と日の値
- 月と日の値がゼロである単独の年
- クレジット カードの有効期限など、日がゼロである年と月の値
関連する型は、google.type.TimeOfDay
と google.protobuf.Timestamp
です。
JSON 表現 |
{
"year": integer,
"month": integer,
"day": integer
} |
フィールド |
year |
integer
その日付の年。1~9999、または年のない日付を指定する場合は 0 にする必要があります。
|
month |
integer
1 年の中の月。1~12、または月と日のない年を指定する場合は 0 にする必要があります。
|
day |
integer
1 月の中の日付。1~31 で、その年と月に対して有効である必要があります。または、日が重要でない場合に年のみか年と月を指定するには 0 にする必要があります。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-10-11 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2024-10-11 UTC。"],[[["`google.type.Date` represents a calendar date, including full dates, month/day combinations, years, or year/month combinations."],["It utilizes the Gregorian Calendar and can be used for birthdays, anniversaries, and credit card expirations."],["The JSON representation consists of `year`, `month`, and `day` integer fields, with 0 values indicating the absence of a specific component."],["`google.type.Date` is related to `google.type.TimeOfDay` and `google.protobuf.Timestamp` for representing other temporal aspects."]]],[]]