Google Classroom アドオンの一般提供が開始されました。詳しくは、
アドオンのドキュメントをご覧ください。
TimeOfDay
1 日のうちの時刻を表します。日付とタイムゾーンは重要ではないか、他の場所で指定されています。API は、うるう秒を許可するようにできます。関連する型は、google.type.Date
と google.protobuf.Timestamp
です。
JSON 表現 |
{
"hours": integer,
"minutes": integer,
"seconds": integer,
"nanos": integer
} |
フィールド |
hours |
integer
時間(24 時間形式)。0~23 である必要があります。API ではビジネスの終了時間などのシナリオにおいて、値 "24:00:00" を許可することもできます。
|
minutes |
integer
分。0~59 である必要があります。
|
seconds |
integer
秒。通常、0~59 である必要があります。API がうるう秒を許可する場合、値 60 が許可されます。
|
nanos |
integer
秒の小数部分(ナノ秒単位)。0~999,999,999 である必要があります。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-08-22 UTC。
[null,null,["最終更新日 2024-08-22 UTC。"],[[["TimeOfDay represents a specific time without date or timezone information, focusing on hours, minutes, seconds, and nanoseconds."],["It uses a JSON structure with fields for hours (0-23, potentially 24), minutes (0-59), seconds (0-59, possibly 60 for leap seconds), and nanoseconds (0-999,999,999)."],["TimeOfDay is related to `google.type.Date` and `google.protobuf.Timestamp` but is distinct in its focus on the time component."],["APIs using TimeOfDay can allow for flexibility like representing business closing time with \"24:00:00\" or accommodating leap seconds."]]],[]]