If an @Managed
class does not define an
equals()
method, one is automatically added to the
class definition when the class is loaded. The generated
equals()
method will return true if two objects
reference the same shared memory object.
If an @Managed
class does not define a
hashCode()
method, one is automatically added to the
class definition when the class is loaded. The generated
hashCode()
method will generate a hash value from the
shared memory location of the object.