Return value is outside of declared range
Reports numeric values returned from methods that don't conform to the declared method return range. You can declare method return range using a number of annotations:
org.jetbrains.annotations.Rangefrom JetBrains annotations package (specify 'from' and 'to')org.checkerframework.common.value.qual.IntRangefrom Checker Framework annotations package (specify 'from' and 'to')org.checkerframework.checker.index.qual.GTENegativeOnefrom Checker Framework annotations package (range is '>= -1')org.checkerframework.checker.index.qual.NonNegativefrom Checker Framework annotations package (range is '>= 0')org.checkerframework.checker.index.qual.Positivefrom Checker Framework annotations package (range is '> 0')javax.annotation.Nonnegativefrom JSR 305 annotations package (range is '>= 0')javax.validation.constraints.Min(specify minimum value)javax.validation.constraints.Max(specify maximum value)
Example:
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
UnsatisfiedRange- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
New in 2021.2
Suppressing Inspection
You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:
More detailed instructions as well as other ways and options that you have can be found in the product documentation:
Inspection Details | |
|---|---|
By default bundled with: |