DoubleRange
JSON representation |
{
"min": number,
"max": number
} |
Fields |
min |
number
The minimum data value, i.e. the lower bound of the range.
|
max |
number
The maximum data value, i.e. the upper bound of the range.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-06-05 UTC.
[null,null,["Last updated 2024-06-05 UTC."],[[["Defines a range of numerical values using a minimum and maximum boundary."],["Uses JSON format with \"min\" and \"max\" fields representing lower and upper bounds respectively."],["Both \"min\" and \"max\" fields are of data type 'number'."]]],["The content defines a data structure representing a range of double values. This structure is represented in JSON format as an object with two key-value pairs: \"min\" and \"max\". \"Min\" specifies the minimum numerical value within the range, while \"max\" defines the maximum numerical value. Both \"min\" and \"max\" hold number type data, defining the lower and upper limits of the described numerical range.\n"]]