@@ -39,17 +39,17 @@ Use ERational from PeterO.Numbers/com.upokecenter.numbers.
39
39
## Methods
40
40
41
41
* ` int compareTo(ExtendedRational other) ` <br >
42
- Deprecated. Not documented yet .
42
+ Deprecated. Compares this value to another .
43
43
* `static ExtendedRational Create(BigInteger numerator,
44
44
BigInteger denominator)`<br >
45
45
Deprecated. Creates a rational number with the given numerator and denominator.
46
46
* `static ExtendedRational Create(int numeratorSmall,
47
47
int denominatorSmall)`<br >
48
48
Deprecated. Creates a rational number with the given numerator and denominator.
49
49
* ` boolean equals(ExtendedRational other) ` <br >
50
- Deprecated. Not documented yet .
50
+ Deprecated. Checks whether this and another value are equal .
51
51
* ` boolean equals(Object obj) ` <br >
52
- Deprecated. Not documented yet .
52
+ Deprecated. Checks whether this and another value are equal .
53
53
* ` BigInteger getDenominator() ` <br >
54
54
Deprecated. Gets this object's denominator.
55
55
* ` BigInteger getNumerator() ` <br >
@@ -228,7 +228,8 @@ Deprecated.
228
228
229
229
** Returns:**
230
230
231
- * A 32-bit signed integer.
231
+ * Less than 0 if this value is less than, 0 if equal to, or greater
232
+ than 0 if greater than the other value.
232
233
233
234
### equals
234
235
public boolean equals(ExtendedRational other)
@@ -240,7 +241,7 @@ Deprecated.
240
241
241
242
** Returns:**
242
243
243
- * either <code >true</code > or <code >false</code >.
244
+ * Either <code >true</code > or <code >false</code >.
244
245
245
246
### equals
246
247
public boolean equals(Object obj)
@@ -256,7 +257,7 @@ Deprecated.
256
257
257
258
** Returns:**
258
259
259
- * either <code >true</code > or <code >false</code >.
260
+ * Either <code >true</code > or <code >false</code >.
260
261
261
262
### hashCode
262
263
public int hashCode()
0 commit comments