Files
2025-02-05 04:43:28 +00:00

9 lines
547 B
HTML

<html>
<body>
Can add a <code>@Range</code> annotation or edit its value.
<code>@Range</code> annotations can be added to method parameters, fields, or method return values
and are used by static analysis tools (e.g. inspections) to validate the code.
<p>A range can be specified for a value of a <code>long</code>, <code>int</code>, <code>short</code>, <code>char</code>, or <code>byte</code>
type. A range is defined by specifying the lower bound <code>from</code> (inclusive) and the upper bound <code>to</code> (inclusive).</p>
</body>
</html>