DoubleRange
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Zakres liczb podwójnej precyzji.
Zapis JSON |
{
"min": number,
"max": number
} |
Pola |
min |
number
Minimalna wartość danych, czyli dolna granica zakresu.
|
max |
number
Maksymalna wartość danych, czyli górna granica zakresu.
|
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-26 UTC.
[null,null,["Ostatnia aktualizacja: 2025-07-26 UTC."],[[["\u003cp\u003eDefines a range of numerical values using a minimum and maximum boundary.\u003c/p\u003e\n"],["\u003cp\u003eUses JSON format with "min" and "max" fields representing lower and upper bounds respectively.\u003c/p\u003e\n"],["\u003cp\u003eBoth "min" and "max" fields are of data type 'number'.\u003c/p\u003e\n"]]],["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"],null,["# DoubleRange\n\nA range of doubles.\n\n| JSON representation |\n|------------------------------------------|\n| ``` { \"min\": number, \"max\": number } ``` |\n\n| Fields ||\n|-------|---------------------------------------------------------------------|\n| `min` | `number` The minimum data value, i.e. the lower bound of the range. |\n| `max` | `number` The maximum data value, i.e. the upper bound of the range. |"]]