I am having List<Student> stud1 = new ArrayList<Student>();
and List<Student> stud2 = new ArrayList<Student>();
And Student
class is having members like name, address.
What i have to do is , I have to list the Student from stud1 (if stud1's Student name is equal to stud2's Student name).
How to achieve this ?
I want to know, is there any existing java libraries like ListUtil to solve this problem ?