I know that predicates are ment to specify which object of ArrayList has to be deleted. Instead of deleting I'd like to set to null those objects.
Like
arrayList.setIf(myPredicate,null); instead of arrayList.removeIf(myPredicate)
I have prepared so many predicates so I dont want to waste it.