Indicates whether this object represents an infinite value. @return true if the value of this float is positive or negative infinity; false otherwise.
()
| 229 | * infinity; {@code false} otherwise. |
| 230 | */ |
| 231 | public boolean isInfinite() { |
| 232 | return isInfinite(value); |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Indicates whether the specified float represents an infinite value. |