@@ -2343,13 +2343,17 @@ public void setParseBigDecimal(boolean newValue) {
2343
2343
}
2344
2344
2345
2345
/**
2346
- * Checks if this {@code CompactNumberFormat} is equal to the
2347
- * specified {@code obj}. The objects of type {@code CompactNumberFormat}
2348
- * are compared, other types return false; obeys the general contract of
2349
- * {@link java.lang.Object#equals(java.lang.Object) Object.equals}.
2346
+ * Compares the specified object with this {@code CompactNumberFormat} for equality.
2347
+ * Returns true if the object is also a {@code CompactNumberFormat} and the
2348
+ * two formats would format any value the same.
2350
2349
*
2350
+ * @implSpec This method performs an equality check with a notion of class
2351
+ * identity based on {@code getClass()}, rather than {@code instanceof}.
2352
+ * Therefore, in the equals methods in subclasses, no instance of this class
2353
+ * should compare as equal to an instance of a subclass.
2351
2354
* @param obj the object to compare with
2352
2355
* @return true if this is equal to the other {@code CompactNumberFormat}
2356
+ * @see Object#hashCode()
2353
2357
*/
2354
2358
@ Override
2355
2359
public boolean equals (Object obj ) {
@@ -2373,7 +2377,11 @@ public boolean equals(Object obj) {
2373
2377
}
2374
2378
2375
2379
/**
2376
- * {@return the hash code for this {@code CompactNumberFormat} instance}
2380
+ * {@return the hash code for this {@code CompactNumberFormat}}
2381
+ *
2382
+ * @implSpec Non-transient instance fields of this class are used to calculate
2383
+ * a hash code value which adheres to the contract defined in {@link Objects#hashCode}
2384
+ * @see Object#hashCode()
2377
2385
*/
2378
2386
@ Override
2379
2387
public int hashCode () {
0 commit comments