-
Enhancement
-
Resolution: Fixed
-
P4
-
6
-
b43
-
generic
-
generic
The Descriptor interface should acquire an equals(Object) method that specifies how Descriptors are compared for equality. This method should say:
Compare this descriptor to another one. The objects are equal if they have the same field names (possibly differing in case) and the same associated values. Values that are primitive arrays of the same type are equal if they have the same elements. Values that are object arrays are equal if they compare equal with {@link Arrays#deepEquals(Object,Object)}.
The interface should also define hashCode() with a definition that is consistent with this definition of equals.
The implementation classes DescriptorSupport and ImmutableDescriptor should of course follow this specification. ImmutableDescriptor could also provide static convenience methods equals(Descriptor,Descriptor) and hashCode(Descriptor), though that might be overkill.
###@###.### 2005-04-15 15:44:28 GMT
Compare this descriptor to another one. The objects are equal if they have the same field names (possibly differing in case) and the same associated values. Values that are primitive arrays of the same type are equal if they have the same elements. Values that are object arrays are equal if they compare equal with {@link Arrays#deepEquals(Object,Object)}.
The interface should also define hashCode() with a definition that is consistent with this definition of equals.
The implementation classes DescriptorSupport and ImmutableDescriptor should of course follow this specification. ImmutableDescriptor could also provide static convenience methods equals(Descriptor,Descriptor) and hashCode(Descriptor), though that might be overkill.
###@###.### 2005-04-15 15:44:28 GMT