Perhaps commons-collections could help you with such a task.
But I would try to put those all in a map, using that splitting/filtering property as key and a List as value:
After this block, map.values() will return a Collection of List objects containing what you are looking for.
In case the splitter property is of a custom type, make sure that type has a proper equals() and hashCode() implementations.