Interval
Stay organized with collections
Save and categorize content based on your preferences.
A floating point interval.
JSON representation |
{
// Union field min can be only one of the following:
"minimum": number,
"exclusiveMinimum": number
// End of list of possible types for union field min .
// Union field max can be only one of the following:
"maximum": number,
"exclusiveMaximum": number
// End of list of possible types for union field max .
} |
Fields |
Union field min . The lower bound of the interval. If neither of the min fields are set, then the lower bound is negative infinity. This field must be not larger than max. Otherwise, an INVALID_ARGUMENT error is returned. min can be only one of the following: |
minimum |
number
Inclusive lower bound.
|
exclusiveMinimum |
number
Exclusive lower bound.
|
Union field max . The upper bound of the interval. If neither of the max fields are set, then the upper bound is positive infinity. This field must be not smaller than min. Otherwise, an INVALID_ARGUMENT error is returned. max can be only one of the following: |
maximum |
number
Inclusive upper bound.
|
exclusiveMaximum |
number
Exclusive upper bound.
|
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 2025-03-03 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-03 UTC."],[[["The JSON representation defines a floating-point interval with optional lower and upper bounds."],["The `min` field, representing the lower bound, can be either an inclusive (`minimum`) or exclusive (`exclusiveMinimum`) number; if unset, it defaults to negative infinity."],["The `max` field, representing the upper bound, can be either an inclusive (`maximum`) or exclusive (`exclusiveMaximum`) number; if unset, it defaults to positive infinity."],["The lower bound `min` must be no larger than the upper bound `max` to be considered valid."]]],[]]