Compares this object to the specified float object to determine their relative order. There are two special cases: Float.NaN is equal to Float.NaN and it is greater than any other float value, including Float.POSITIVE_INFINITY; +0.0f is greater than -0.0f</l
(Float object)
| 130 | * @since 1.2 |
| 131 | */ |
| 132 | public int compareTo(Float object) { |
| 133 | return compare(value, object.value); |
| 134 | } |
| 135 | |
| 136 | @Override |
| 137 | public byte byteValue() { |