The JavaCollections framework is a coupled set of classes and interfaces that implement commonly reusable collection DataStructures. It was designed and developed primarily by JoshuaBloch. Although it is a framework, it works in a manner of a library.

----
JavaCollections Diagram:

http://docs.oracle.com/javase/tutorial/figures/collections/colls-coreInterfaces.gif

----
Links:
* http://java.sun.com/docs/books/tutorial/collections/ - The Java Collections Tutorial by JoshuaBloch
* http://java.sun.com/javase/6/docs/technotes/guides/collections/ - JavaCollections documentation
* http://tutorials.jenkov.com/java-collections/ - another JavaCollections tutorial

----
CategoryJava