There are two classes with static methods handling collections that are very popular and helpful:
- java.util.Collections
- org.apache.commons.collections4.CollectionUtils
The fact that the methods are static means they do not depend on the object state, so they are also called stateless methods, or utilities methods.