I would like to know if something like below is possible ,
list<MyObject>.removeAll(list<String>)
I hope the context is understandable.
The list<MyObject> : is a ArrayList<MyObject>
The list<String> : is a ArrayList<String>
I know this can be achieved by overriding equals method in MyObject class. I would like to know if any other choice is prsent.
Thanks,Srinivas N