Weird title, I know, let me explain.

I am a developer most familiar with C# and Javascript. I am completely sunk into those semi-functional worlds to the point that most of my code is about mapping/reducing/filtering collections. In C# that means I use LINQ just about everywhere, in Javascript it's Underscore.js and jQuery.

I have currently been assigned to an ongoing Java project and am feeling rather stifled. I simply do not think in terms of "create an array, shuffle stuff from one to another". I can (and did) create my own versions of the main map/reduce functions using anonymous types implementing interfaces but why re-invent the wheel? The project I am currently on already has commons-collections-3.1.jar and looking through the classes contained it seems like it likely can do everything that I want and more.

For the life of me, I can't find how to actually use it. Looking through the dozens of classes therein is not very helpful and the only thing I can google up is the api doc which is equally as helpful.

How do you use it to Map/Select, Filter/Where, Reduce/Aggregate? Is there anywhere that gives an actual tutorial on this library?

link|improve this question

72% accept rate
Book - Jakarta Commons Cookbook shop.oreilly.com/product/9780596007065.do?CMP=ILL-4GV796923290 – AVD Dec 28 '11 at 14:23
3  
Be aware that Commons Collections is pretty legacy and does not support generics. – BalusC Dec 28 '11 at 14:25
Ugh, seriously? Well not going to use that then. What is a package that gives collection processing abilities AND supports generics? – George Mauer Dec 28 '11 at 14:46
3  
Google Collections (part of Guava) is the de facto successor of Commons Collections. – BalusC Dec 28 '11 at 14:47
feedback

3 Answers

up vote 4 down vote accepted

(Comment as answer for formatting purposes.)

Not so much, other than the limited user guide.

That said, I'm not sure where specifically you're having problems--filtering and selecting is mostly wrapped up in the functors package, and utilized by the CollectionUtils class.

While you're not looking for a replacement, you might find things like Guava or Lambda4J a bit more similar to what you're used to (within Java's constraints), and they're a bit less verbose.

link|improve this answer
Ah CollectionUtils is what I was looking for. That should be enough to get me started but holy god these guys need to get their documentation into an actually helpful state. Even that link to the direct class I want contains no examples of usage, I just got lucky that I recognized some of the method signatures as resembling ones that I had implemented myself. – George Mauer Dec 28 '11 at 14:41
@GeorgeMauer I think it's one of those things where it's been around so long it's assumed everyone has just learned it through osmosis ;) – Dave Newton Dec 28 '11 at 14:49
I get the feel all of Java is like that :) – George Mauer Dec 28 '11 at 14:54
@GeorgeMauer It can be at times--without a "governing body", so to speak, information can be a bit scattered at times. It's also pretty old, which is why I pointed at Guava/Lambda4J; it's just kind of accreted material over the years w/o corresponding documentation. Maybe I'll write something up though. – Dave Newton Dec 28 '11 at 15:02
2  
@GeorgeMauer Point out that Guava supports generics, and looks more like modern Java than the aged collections library--shouldn't be a hard sell. Show a couple of side-by-sides. Otherwise... cast away. – Dave Newton Dec 28 '11 at 15:10
show 5 more comments
feedback

Try these links :

http://commons.apache.org/collections/userguide.html (basic tutorial) http://larvalabs.com/collections/tutorial.html (advanced tutorial with generic)

link|improve this answer
These links contain only standard collection stuff but nothing about the closure/filter/transformer stuff in commons-collections. – A.H. Dec 28 '11 at 14:34
feedback

@george-mauer, you might have to rely on articles like this or a book like Jakarta Commons Cookbook. I have also found it rather useful to learn by creating samples of my own.

link|improve this answer
Hmm, that link simply talks about anonymous interface implementors and I'm certainly not going to get/read a book for a several month project. what a PITA – George Mauer Dec 28 '11 at 14:47
feedback

Your Answer

 
or
required, but never shown

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