Say I have a collection of foodGroupIds and a collection of food. Using commons-collections, how can I filter out the food which does not belong to any of the food groups?
I might be on the right track, but can't figure out what predicate to use. Maybe have to create my own?
Collection<Long> ids = collect(
findGoodFoodGroups(),
invokerTransformer("getId"));
Collection<Food> food = getAllFood();
filter(food, transformedPredicate(
invokerTransformer("getFoodGroupId"),
?));
In C# this would be something like this:
var ids = FindGoodFoodGroups().Select(x => x.Id);
var goodFood = FindAllFood().Select(x => ids.Contains(x.FoodGroupId));
I want all objects whose property P of type T is equal to any T in a collection C with objects of type T.