July 2017
Beginner to intermediate
715 pages
17h 3m
English
The Java Collections API is very powerful and it defines a good set of abstractions for data structures in Java. The Commons Collections use these abstractions and extend the standard Collections API with new implementations as well as new collections. To include the library, use this snippet:
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.1</version> </dependency>
Some useful collections from this library are:
It has some overlap with collections from Google Guava, explained ...
Read now
Unlock full access