Hi,
the answer to this question is probably "not possible", but let me ask regardless :)
Assuming we have a very simple JAVA class that has a primary key, for example:
class Person {
String ssid;
String name;
String address;
...
}
Now, I want to store people in a collection, meaning I will have to override the equals method.
…