Skip to content

Commit 8fcf70e

Browse files
author
Justin Lu
committedOct 2, 2023
5066247: Refine the spec of equals() and hashCode() for j.text.Format classes
Reviewed-by: naoto, darcy
1 parent 93f662f commit 8fcf70e

9 files changed

+141
-25
lines changed
 

‎src/java.base/share/classes/java/text/ChoiceFormat.java

+16-2
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,11 @@ public Object clone()
572572
}
573573

574574
/**
575-
* Generates a hash code for the message format object.
575+
* {@return the hash code for this {@code ChoiceFormat}}
576+
*
577+
* @implSpec This method calculates the hash code value using the values returned by
578+
* {@link #getFormats()} and {@link #getLimits()}.
579+
* @see Object#hashCode()
576580
*/
577581
@Override
578582
public int hashCode() {
@@ -585,7 +589,17 @@ public int hashCode() {
585589
}
586590

587591
/**
588-
* Equality comparison between two
592+
* Compares the specified object with this {@code ChoiceFormat} for equality.
593+
* Returns true if the object is also a {@code ChoiceFormat} and the
594+
* two formats would format any value the same.
595+
*
596+
* @implSpec This method performs an equality check with a notion of class
597+
* identity based on {@code getClass()}, rather than {@code instanceof}.
598+
* Therefore, in the equals methods in subclasses, no instance of this class
599+
* should compare as equal to an instance of a subclass.
600+
* @param obj object to be compared for equality
601+
* @return {@code true} if the specified object is equal to this {@code ChoiceFormat}
602+
* @see Object#equals(Object)
589603
*/
590604
@Override
591605
public boolean equals(Object obj) {

‎src/java.base/share/classes/java/text/CompactNumberFormat.java

+13-5
Original file line numberDiff line numberDiff line change
@@ -2343,13 +2343,17 @@ public void setParseBigDecimal(boolean newValue) {
23432343
}
23442344

23452345
/**
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.
23502349
*
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.
23512354
* @param obj the object to compare with
23522355
* @return true if this is equal to the other {@code CompactNumberFormat}
2356+
* @see Object#hashCode()
23532357
*/
23542358
@Override
23552359
public boolean equals(Object obj) {
@@ -2373,7 +2377,11 @@ public boolean equals(Object obj) {
23732377
}
23742378

23752379
/**
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()
23772385
*/
23782386
@Override
23792387
public int hashCode() {

‎src/java.base/share/classes/java/text/DateFormat.java

+16-2
Original file line numberDiff line numberDiff line change
@@ -767,15 +767,29 @@ public boolean isLenient()
767767
}
768768

769769
/**
770-
* Overrides hashCode
770+
* {@return the hash code for this {@code DateFormat}}
771+
*
772+
* @implSpec This method calculates the hash code value using the value returned by
773+
* {@link #getNumberFormat()}.
774+
* @see Object#hashCode()
771775
*/
772776
public int hashCode() {
773777
return numberFormat.hashCode();
774778
// just enough fields for a reasonable distribution
775779
}
776780

777781
/**
778-
* Overrides equals
782+
* Compares the specified object with this {@code DateFormat} for equality.
783+
* Returns true if the object is also a {@code DateFormat} and the
784+
* two formats would format any value the same.
785+
*
786+
* @implSpec This method performs an equality check with a notion of class
787+
* identity based on {@code getClass()}, rather than {@code instanceof}.
788+
* Therefore, in the equals methods in subclasses, no instance of this class
789+
* should compare as equal to an instance of a subclass.
790+
* @param obj object to be compared for equality
791+
* @return {@code true} if the specified object is equal to this {@code DateFormat}
792+
* @see Object#equals(Object)
779793
*/
780794
public boolean equals(Object obj) {
781795
if (this == obj) return true;

‎src/java.base/share/classes/java/text/DateFormatSymbols.java

+16-3
Original file line numberDiff line numberDiff line change
@@ -657,8 +657,11 @@ public Object clone()
657657
}
658658

659659
/**
660-
* Override hashCode.
661-
* Generates a hash code for the DateFormatSymbols object.
660+
* {@return the hash code for this {@code DateFormatSymbols}}
661+
*
662+
* @implSpec Non-transient instance fields of this class are used to calculate
663+
* a hash code value which adheres to the contract defined in {@link Objects#hashCode}.
664+
* @see Object#hashCode()
662665
*/
663666
@Override
664667
public int hashCode() {
@@ -682,7 +685,17 @@ public int hashCode() {
682685
}
683686

684687
/**
685-
* Override equals
688+
* Compares the specified object with this {@code DateFormatSymbols} for equality.
689+
* Returns true if the object is also a {@code DateFormatSymbols} and the two
690+
* {@code DateFormatSymbols} objects represent the same date-time formatting data.
691+
*
692+
* @implSpec This method performs an equality check with a notion of class
693+
* identity based on {@code getClass()}, rather than {@code instanceof}.
694+
* Therefore, in the equals methods in subclasses, no instance of this class
695+
* should compare as equal to an instance of a subclass.
696+
* @param obj object to be compared for equality
697+
* @return {@code true} if the specified object is equal to this {@code DateFormatSymbols}
698+
* @see Object#equals(Object)
686699
*/
687700
@Override
688701
public boolean equals(Object obj)

‎src/java.base/share/classes/java/text/DecimalFormat.java

+17-2
Original file line numberDiff line numberDiff line change
@@ -2928,7 +2928,17 @@ public Object clone() {
29282928
}
29292929

29302930
/**
2931-
* Overrides equals
2931+
* Compares the specified object with this {@code DecimalFormat} for equality.
2932+
* Returns true if the object is also a {@code DecimalFormat} and the
2933+
* two formats would format any value the same.
2934+
*
2935+
* @implSpec This method performs an equality check with a notion of class
2936+
* identity based on {@code getClass()}, rather than {@code instanceof}.
2937+
* Therefore, in the equals methods in subclasses, no instance of this class
2938+
* should compare as equal to an instance of a subclass.
2939+
* @param obj object to be compared for equality
2940+
* @return {@code true} if the specified object is equal to this {@code DecimalFormat}
2941+
* @see Object#equals(Object)
29322942
*/
29332943
@Override
29342944
public boolean equals(Object obj)
@@ -2973,7 +2983,12 @@ public boolean equals(Object obj)
29732983
}
29742984

29752985
/**
2976-
* Overrides hashCode
2986+
* {@return the hash code for this {@code DecimalFormat}}
2987+
*
2988+
* @implSpec This method calculates the hash code value using the values returned from
2989+
* {@link #getPositivePrefix()} and {@link NumberFormat#hashCode()}.
2990+
* @see Object#hashCode()
2991+
* @see NumberFormat#hashCode()
29772992
*/
29782993
@Override
29792994
public int hashCode() {

‎src/java.base/share/classes/java/text/DecimalFormatSymbols.java

+16-2
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,17 @@ public Object clone() {
737737
}
738738

739739
/**
740-
* Override equals.
740+
* Compares the specified object with this {@code DecimalFormatSymbols} for equality.
741+
* Returns true if the object is also a {@code DecimalFormatSymbols} and the two
742+
* {@code DecimalFormatSymbols} objects represent the same set of symbols.
743+
*
744+
* @implSpec This method performs an equality check with a notion of class
745+
* identity based on {@code getClass()}, rather than {@code instanceof}.
746+
* Therefore, in the equals methods in subclasses, no instance of this class
747+
* should compare as equal to an instance of a subclass.
748+
* @param obj object to be compared for equality
749+
* @return {@code true} if the specified object is equal to this {@code DecimalFormatSymbols}
750+
* @see Object#equals(Object)
741751
*/
742752
@Override
743753
public boolean equals(Object obj) {
@@ -767,7 +777,11 @@ public boolean equals(Object obj) {
767777
}
768778

769779
/**
770-
* Override hashCode.
780+
* {@return the hash code for this {@code DecimalFormatSymbols}}
781+
*
782+
* @implSpec Non-transient instance fields of this class are used to calculate
783+
* a hash code value which adheres to the contract defined in {@link Objects#hashCode}.
784+
* @see Object#hashCode()
771785
*/
772786
@Override
773787
public int hashCode() {

‎src/java.base/share/classes/java/text/MessageFormat.java

+16-2
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,17 @@ public Object clone() {
11411141
}
11421142

11431143
/**
1144-
* Equality comparison between two message format objects
1144+
* Compares the specified object with this {@code MessageFormat} for equality.
1145+
* Returns true if the object is also a {@code MessageFormat} and the
1146+
* two formats would format any value the same.
1147+
*
1148+
* @implSpec This method performs an equality check with a notion of class
1149+
* identity based on {@code getClass()}, rather than {@code instanceof}.
1150+
* Therefore, in the equals methods in subclasses, no instance of this class
1151+
* should compare as equal to an instance of a subclass.
1152+
* @param obj object to be compared for equality
1153+
* @return {@code true} if the specified object is equal to this {@code MessageFormat}
1154+
* @see Object#equals(Object)
11451155
*/
11461156
@Override
11471157
public boolean equals(Object obj) {
@@ -1159,7 +1169,11 @@ public boolean equals(Object obj) {
11591169
}
11601170

11611171
/**
1162-
* Generates a hash code for the message format object.
1172+
* {@return the hash code value for this {@code MessageFormat}}
1173+
*
1174+
* @implSpec This method calculates the hash code value using the value returned by
1175+
* {@link #toPattern()}.
1176+
* @see Object#hashCode()
11631177
*/
11641178
@Override
11651179
public int hashCode() {

‎src/java.base/share/classes/java/text/NumberFormat.java

+16-2
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,11 @@ public static Locale[] getAvailableLocales() {
698698
}
699699

700700
/**
701-
* Overrides hashCode.
701+
* {@return the hash code for this {@code NumberFormat}}
702+
*
703+
* @implSpec This method calculates the hash code value using the values returned by
704+
* {@link #getMaximumIntegerDigits()} and {@link #getMaximumFractionDigits()}.
705+
* @see Object#hashCode()
702706
*/
703707
@Override
704708
public int hashCode() {
@@ -707,7 +711,17 @@ public int hashCode() {
707711
}
708712

709713
/**
710-
* Overrides equals.
714+
* Compares the specified object with this {@code NumberFormat} for equality.
715+
* Returns true if the object is also a {@code NumberFormat} and the
716+
* two formats would format any value the same.
717+
*
718+
* @implSpec This method performs an equality check with a notion of class
719+
* identity based on {@code getClass()}, rather than {@code instanceof}.
720+
* Therefore, in the equals methods in subclasses, no instance of this class
721+
* should compare as equal to an instance of a subclass.
722+
* @param obj object to be compared for equality
723+
* @return {@code true} if the specified object is equal to this {@code NumberFormat}
724+
* @see Object#equals(Object)
711725
*/
712726
@Override
713727
public boolean equals(Object obj) {

‎src/java.base/share/classes/java/text/SimpleDateFormat.java

+15-5
Original file line numberDiff line numberDiff line change
@@ -2409,7 +2409,11 @@ public Object clone() {
24092409
}
24102410

24112411
/**
2412-
* {@return the hash code value for this {@code SimpleDateFormat} object}
2412+
* {@return the hash code value for this {@code SimpleDateFormat}}
2413+
*
2414+
* @implSpec This method calculates the hash code value using the value returned by
2415+
* {@link #toPattern()}.
2416+
* @see Object#hashCode()
24132417
*/
24142418
@Override
24152419
public int hashCode()
@@ -2419,11 +2423,17 @@ public int hashCode()
24192423
}
24202424

24212425
/**
2422-
* Compares the given object with this {@code SimpleDateFormat} for
2423-
* equality.
2426+
* Compares the specified object with this {@code SimpleDateFormat} for equality.
2427+
* Returns true if the object is also a {@code SimpleDateFormat} and the
2428+
* two formats would format any value the same.
24242429
*
2425-
* @return true if the given object is equal to this
2426-
* {@code SimpleDateFormat}
2430+
* @implSpec This method performs an equality check with a notion of class
2431+
* identity based on {@code getClass()}, rather than {@code instanceof}.
2432+
* Therefore, in the equals methods in subclasses, no instance of this class
2433+
* should compare as equal to an instance of a subclass.
2434+
* @param obj object to be compared for equality
2435+
* @return {@code true} if the specified object is equal to this {@code SimpleDateFormat}
2436+
* @see Object#equals(Object)
24272437
*/
24282438
@Override
24292439
public boolean equals(Object obj)

0 commit comments

Comments
 (0)
Please sign in to comment.