Is there a viable generic version of org.apache.commons.collections.CollectionUtils? If not, why not? It seems like an obvious need. Or has the Java community just given up on functional coding until closures are added to Java 17?

link|improve this question

Closures didn't make it into Java7. – skaffman Aug 10 '11 at 18:26
2  
@skaffman: that's why the OP said Java 17... – Bruno Reis Aug 10 '11 at 18:30
feedback

1 Answer

up vote 5 down vote accepted

There's a genericified port of a slightly out-of-date version of Commons Collections here. It's no longer maintained, however.

A better option is Google Guava. It has classes like Lists, Sets, Collections2 etc that are the equivalent to Commons' CollectionUtils. Guava is not a one-for-one port of Commons Collections, but it has a better designed and more consistent API. Takes a bit of adjusting to, if you're used to Commons Collections.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.