DateTimeRange
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
نطاق الأوقات بين اثنين من التاريخ والوقت. بالنسبة إلى تاريخ ووقت نقاط البيانات، استخدم start == end.
google/type/interval.proto تخدم غرضًا مشابهًا، ولكن مع الوقت الفعلي (لا نهتم سوى بالوقت المدني).
تمثيل JSON |
{
"firstDate": {
object (DateTime )
},
"lastDate": {
object (DateTime )
}
} |
الحقول |
firstDate |
object (DateTime )
بداية النطاق.
|
lastDate |
object (DateTime )
نهاية النطاق
|
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2024-08-23 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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-08-23 (حسب التوقيت العالمي المتفَّق عليه)"],[[["Represents a range of times between two DateTime objects, using start and end points."],["For a single point in time, the start and end DateTime values should be the same."],["Uses civil time for representation, similar to `google/type/interval.proto` but focused on civil time rather than physical time."],["Represented in JSON format with `firstDate` and `lastDate` objects, each containing a DateTime object."]]],["This describes a date range using `firstDate` and `lastDate` fields, both represented as DateTime objects. The `firstDate` signifies the start, and `lastDate` the end of the range. Pointwise times use identical start and end dates. The structure is also described as an JSON object with each field including a nested object of type DateTime. This differs from google/type/interval.proto by dealing with civil time instead of physical time.\n"]]