Hi,
I have a collection of Person class with following main field:
int id; String personName; int personAge;
and other details.
I want to filter the data and get data of all the persons having personAge >14.
How achieve this? What is the best way to filter a Java Collection?
Thanks
Hi,
In Java 8 you can use following code:
List<Person> filteredPersons = persons.stream() .filter(p -> p.getPersonAge() > 14).collect(Collectors.toList());
Above code is using Java 8.
Thanks