lambdaj allows to filter collections without writing loops or inner classes as in the following example:
List<Person> beerDrinkers = select(persons, having(on(Person.class).getAge(),
greaterThan(16)));
Can you imagine something more readable? You can find it here:
