vote up 7 vote down star
2

Hi,

I'm astonished that the Apache Commons Collections project still hasn't got around to making their library generics-aware. I really like the features provided by this library, but the lack of support for generics is a big turn-off. There is a Lavalabs fork of Commons Collections which does support generics, which seems to claim backward compatibility, but when I tried updating to this version, my web application failed to start (in JBoss).

My questions are:

  • Whether anyone has successfully updated from Commons Collections to the fork mentioned above
  • If Commons Collections has any plans to add support for generics

BTW, I'm aware of Google collections, but can't use it, for reasons I don't quite understand.

Cheers, Don

flag

38% accept rate

6 Answers

vote up 5 vote down check

Hey Don,

There are contributions. Checkout the jira's

There is also a JDK5 branch.

We do would like to add generics and update Commons Collections to 1.5 (and 1.6). The biggest problem is how to address backwards compatibility. And people have very different opinions there. For some of the Commons components the newer JDK almost asks for a rewrite for the new JDKs IMHO.

During ApacheCon I felt the urge across several people to get this moving though. It's just a big task.

Feel free to show up on dev@commons.apache.org

cheers, Torsten

link|flag
Thanks Torsten. I'm a bit relucant to bring this up on the mailing list as I expect it's already been discussed a million times. I'll check out the JDK5 branch – Don Nov 17 '08 at 19:42
Question: You do know that JDK 1.4 is no longer supported by sun? – geeeeeeeeeek Nov 18 '08 at 8:22
Just bring it up. We need the pressure :) – tcurdt Nov 18 '08 at 20:10
vote up 5 vote down

Given that the last word in Jakarta's own internal debate was in Dec 07, I would say that Apache will not embrace generics, leaving the field open for something Java5 friendly like Google Collections.

link|flag
vote up 2 vote down

Consider Google Collections. From their Javalobby interview:

[Google Collections is] built with Java 5 features: generics, enums, covariant return types, etc. When writing Java 5 code, you want a collections library that takes full advantage of the language. In addition, we put enormous effort into making the library complete, robust, and consistent with the JDK collection classes.

link|flag
vote up 0 vote down

I think it's become quite a lot easier to navigate in the java library jungle with the introduction of generics. The reactionaries stick out like a sore thumb.

link|flag
vote up 0 vote down

Ignore. Missed link in original question.

link|flag
Have you considered deleting this altogether? – Jonik Apr 28 at 11:56
vote up 0 vote down

I can't imagine what reason you can have to don't use google collections. It's quite simple to use that library.

For my work i use both, apache collections and google collections.

can you explain more about why you can't use google collections?

regards

link|flag
A possible reason is because my application already includes commons collections (e.g. as a transitive dependency of another Apache library). If it was possible, I would prefer to upgrade to a generics version of commons collections that introduce another dependency. – Don Sep 17 at 0:09

Your Answer

Get an OpenID
or

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