Indicates whether this object represents an infinite value. @return true if the value of this double is positive or negative infinity; false otherwise.
()
| 214 | * infinity; {@code false} otherwise. |
| 215 | */ |
| 216 | public boolean isInfinite() { |
| 217 | return isInfinite(value); |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Indicates whether the specified double represents an infinite value. |