When I've used common-collections I've done custom extensions to those utils like:
class MyCollectionUtils extends CollectionsUtils {
static myutilityMethod()
static removeDublicate(..)
static myPredicate(...)
}
In that case I have all functionality from CollectionsUtils and my extension methods with only one import!
In guava all static utilities classes are final.
What is the best approach to extend the guava collection API? For example, new common used predicate, collection factory etc, collection combiner.