Java collections framework

From Wikipedia, the free encyclopedia
(Redirected from Java Collections Framework)
java.util.Collection class and interface hierarchy
Java's java.util.Map class and interface hierarchy

The Java collections framework is a set of classes and interfaces that implement commonly reusable collection data structures.[1]

Although referred to as a framework, it works in a manner of a library. The collections framework provides both interfaces that define various collections and classes that implement them.

Differences from Arrays[edit]

Collections and arrays are similar in that they both hold references to objects and they can be managed as a group. However, unlike arrays, Collections do not need to be assigned a certain capacity when instantiated. Collections can grow and shrink in size automatically when objects are added or removed.

Collections cannot hold primitive data types such as int, long, or double.[2] Instead, Collections can hold wrapper classes such as java.lang.Integer, java.lang.Long, or java.lang.Double.[3]

Collections are generic and hence invariant, but arrays are covariant. This can be considered an advantage of generic objects such as Collection when compared to arrays, because under circumstances, using the generic Collection instead of an array prevents run time exceptions by instead throwing a compile-time exception to inform the developer to fix the code. For example, if a developer declares an Object[] object, and assigns the Object[] object to the value returned by a new Long[] instance with a certain capacity, no compile-time exception will be thrown. If the developer attempts to add a String to this Long[] object, the java program will throw an ArrayStoreException. On the other hand, if the developer instead declared a new instance of a Collection<Object> as ArrayList<Long>, the Java compiler will (correctly) throw a compile-time exception to indicate that the code is written with incompatible and incorrect type, thus preventing any potential run-time exceptions.The developer can fix the code by instantianting Collection<Object> as an ArrayList<Object> object. If the code is using Java SE7 or later versions, the developer can instatiate Collection<Object> as an ArrayList<> object by using the diamond operator[2]

Collections are generic and hence reified, but arrays are not reified.[2]

History[edit]

Collection implementations in pre-JDK 1.2 versions of the Java platform included few data structure classes, but did not contain a collections framework.[4] The standard methods for grouping Java objects were via the array, the Vector, and the Hashtable classes, which unfortunately were not easy to extend, and did not implement a standard member interface.[5][better source needed]

To address the need for reusable collection data structures, several independent frameworks were developed,[4] the most used being Doug Lea's Collections package,[6] and ObjectSpace Generic Collection Library (JGL),[7] whose main goal was consistency with the C++ Standard Template Library (STL).[8][better source needed]

The collections framework was designed and developed primarily by Joshua Bloch, and was introduced in JDK 1.2. It reused many ideas and classes from Doug Lea's Collections package, which was deprecated as a result.[6] Sun Microsystems chose not to use the ideas of JGL, because they wanted a compact framework, and consistency with C++ was not one of their goals.[9][better source needed]

Doug Lea later developed a concurrency package, comprising new Collection-related classes.[10] An updated version of these concurrency utilities was included in JDK 5.0 as of JSR 166.

Architecture[edit]

Almost all collections in Java are derived from the java.util.Collection interface. Collection defines the basic parts of all collections.

The interface has the add(E e) and remove(E e) methods for adding to and removing from a Collection respectively. It also has the toArray() method, which converts the Collection into an array of Objects in the Collection (with return type of Object[]).[11] Finally, the contains(E e) method checks if a specified element exists in the Collection.

The Collection interface is a subinterface of java.lang.Iterable, so any Collection may be the target of a for-each statement. (The Iterable interface provides the iterator() method used by for-each statements.) All Collections have an java.util.Iterator that goes through all of the elements in the Collection.

Collection is generic. Any Collection can store any Object. For example, any implementation of Collection<String> contains String objects. No casting is required when using the String objects from an implementation of Collection<String>.[12] Note that the angled brackets < > can hold a type argument that specifies which type the Collection holds.[13]

Types of collection[edit]

There are several generic types of Collection: Queues, maps, lists and sets.

Queues allow the programmer to insert items in a certain order and retrieve those items in the same order. An example is a waiting list. The base interfaces for queues are called Queue.

Dictionaries/Maps store references to objects with a lookup key to access the object's values. One example of a key is an identification card. The base interface for dictionaries/maps is called Map.

Lists are finite collections where it can store the same value multiple times.

Sets are unordered collections that can be iterated and contain each element at most once. The base interface for sets is called Set.[3]

List interface[edit]

Lists are implemented in the collections framework via the java.util.Listinterface. It defines a list as essentially a more flexible version of an array. Elements have a specific order, and duplicate elements are allowed. Elements can be placed in a specific position. They can also be searched for within the list.

List implementations[edit]

There are several concrete classes that implement List, including AbstractList and all of its corresponding subclasses, as well as CopyOnWriteArrayList.

AbstractList class[edit]

The direct subclasses of AbstractList class include AbstractSequentialList, ArrayList and Vector.

AbstractList is an example of a skeletal implementation, which leverages and combines the advantages of interfaces and abstract classes by making it easy for the developer to develop their own implementation for the given interface.[14]

ArrayList class[edit]

The java.util.ArrayList class implements the List as an array. Whenever functions specific to a List are required, the class moves the elements around within the array in order to do it.

LinkedList class[edit]

The java.util.LinkedList class stores the elements in nodes that each have a pointer to the previous and next nodes in the List. The List can be traversed by following the pointers, and elements can be added or removed simply by changing the pointers around to place the node in its proper place.[15]

Vector class[edit]

The Vector class has Stack as its direct subclass. This is an example of a violation of the composition over inheritance principle in the Java platform libraries, since in computer science, a vector is generally not a stack.[16] Composition would have been more appropriate in this scenario.[16]

Stack class[edit]

The Stack class extends class java.util.Vector with five operations that allow a Vector to be treated as a Stack. Stacks are created using java.util.Stack. The Stack offers methods to put a new object on the Stack (method push(E e)) and to get objects from the Stack (method pop()). A Stack returns the object according to last-in-first-out (LIFO), e.g. the object which was placed latest on the Stack is returned first. java.util.Stack is a standard implementation of a stack provided by Java.

The Stack class represents a last-in-first-out (LIFO) stack of objects. The Stack class has five additional operations that allow a Vector to be treated as a Stack. The usual push(E e) and pop() operations are provided, as well as a method (peek()) to peek at the top item on the Stack, a method to test for whether the Stack is empty (empty()), and a method to search the Stack for an item and discover how far it is from the top (search(Object o)). When a Stack is first created, it contains no items.

CopyOnWriteArrayList class[edit]

The CopyOnWriteArrayList extends the Object class, and does not extend any other classes. CopyOnWriteArrayList allows for thread-safety without performing excessive synchronization.[17]

In some scenarios, synchronization is mandatory. For example, if a method modifies a static field, and the method must be called by multiple threads, then synchronization is mandatory and concurrency utilities such as CopyOnWriteArrayList should not be used.[17]

However synchronization can incur a performance overhead. For scenarios where synchronization is not mandatory, then the CopyOnWriteArrayList is a viable, thread-safe alternative to synchronization that leverages multi-core processors and results in higher CPU utilization. [17]

Queue interfaces[edit]

The java.util.Queue interface defines the queue data structure, which stores elements in the order in which they are inserted. New additions go to the end of the line, and elements are removed from the front. It creates a first-in first-out system. This interface is implemented by java.util.LinkedList, java.util.ArrayDeque, and java.util.PriorityQueue.

Queue implementations[edit]

AbstractQueue class[edit]

The direct subclasses of AbstractQueue class include ArrayBlockingQueue, ConcurrentLinkedQueue, DelayeQueue, LinkedBlockingDeque, LinkedBlockingQueue. LinkedTransferQueue and PriorityBlockingQueue.

Note that ArrayDeque and ConcurrentLinkedDeque both extend AbstractCollection but do not extend any other abstract classes such as AbstractQueue.

AbstractQueue is an example of a skeletal implementation.

PriorityQueue class[edit]

The java.util.PriorityQueue class implements java.util.Queue, but also alters it.[18] PriorityQueue has an additional comparator() method.[18] Instead of elements being ordered in the order in which they are inserted, they are ordered by priority. The method used to determine priority is either the java.lang.Comparable#compareTo(T) method in the elements, or a method given in the constructor. The class creates this by using a heap to keep the items sorted.[19]

ConcurrentLinkedQueue class[edit]

The java.util.concurrent.ConcurrentLinkedQueue class extends java.util.AbstractQueue. ConcurrentLinkedQueue implements the java.util.Queue interface.[20]

The ConcurrentLinkedQueue class is a thread-safe collection, since for any an element placed inside a ConcurrentLinkedQueue, the Java Collection Library guarantees that the element is safely published by allowing any thread to get the element from the collection.[21] An object is said to be safely published if the object's state is made visible to all other thread at the same point in time.[21] Safe publication usually requires synchronization of the publishing and consuming threads.[21]

BlockingQueue interface[edit]

The java.util.concurrent.BlockingQueue interface extends Queue.[20]

The BlockingQueue interface has the following direct sub-interfaces: BlockingDeque and TransferQueue. BlockingQueue works like a regular Queue, but additions to and removals from the BlockingQueue are blocking.[22] If remove(Object o) is called on an empty BlockingQueue, it can be set to wait either a specified time or indefinitely for an item to appear in the BlockingQueue. Similarly, adding an item using the method add(Object o) is subject to an optional capacity restriction on the BlockingQueue, and the method can wait for space to become available in the BlockingQueue before returning. BlockingQueue interface introduces a method take() which removes and gets the head of the BlockingQueue, and waits until the BlockingQueue is no longer empty if required.[23][24]

Double-ended queue (Deque) interfaces[edit]

The Deque interface extends the Queue interface.[25] Deque creates a double-ended queue. While a regular Queue only allows insertions at the rear and removals at the front, the Deque allows insertions or removals to take place both at the front and the back. A Deque is like a Queue that can be used forwards or backwards, or both at once. Additionally, both a forwards and a backwards iterator can be generated. The Deque interface is implemented by java.util.ArrayDeque and java.util.LinkedList.[26]

Deque implementations[edit]

LinkedList class[edit]

LinkedList, of course, also implements the List interface and can also be used as one. But it also has the Queue methods. LinkedList implements the java.util.Deque interface, giving it more flexibility.[27]

ArrayDeque class[edit]

ArrayDeque implements the Queue as an array. Similar to LinkedList, ArrayDeque also implements the java.util.Deque interface.[27]

BlockingDeque interface[edit]

The java.util.concurrent.BlockingDeque interface extends java.util.concurrent.BlockingQueue.[25] BlockingDeque is similar to BlockingQueue. It provides the same methods for insertion and removal with time limits for waiting for the insertion or removal to become possible. However, the interface also provides the flexibility of a Deque. Insertions and removals can take place at both ends. The blocking function is combined with the Deque function.[28]

Set interfaces[edit]

Java's java.util.Setinterface defines the Set. A Set can't have any duplicate elements in it. Additionally, the Set has no set order. As such, elements can't be found by index. Set is implemented by java.util.HashSet, java.util.LinkedHashSet, and java.util.TreeSet.

Set interface implementations[edit]

There are several implementations of the Set interface, including AbstractSet and its subclasses, and the final static inner class ConcurrentHashMap.KeySetView<K,V> (where K and V are formal type parameters).

AbstractSet[edit]

AbstractSet is a skeletal implementation for the Set interface.[14]

Direct subclasses of AbstractSet include ConcurrentSkipListSet, CopyOnWriteArraySet, EnumSet, HashSet and TreeSet.

EnumSet class[edit]

The EnumSet class extends AbstractSet. The EnumSet class has no public constructors, and only contain static factory methods.[29]

EnumSet contains the static factory method EnumSet.of().[30] This method is an aggregation method.[29] It takes in several parameters, takes into account of the type of the parameters, then returns an instance with the appropriate type.[29] As of 2018, In Java SE8 OpenJDK implementation uses two implementations of EnumSet which are invisible to the client, which are RegularEnumSet and JumboEnumSet.[29] If the RegularEnumSet no longer provided any performance benefits for small enum types, it could be removed from the library without negatively impacting the Java Collection Library.[29]

EnumSet is a good replacement for the bit fields, which is a type of set, as described below.[30]

Traditionally, whenever developers encountered elements of an enumerated type that needs to be placed in a set, the developer would use the int enum pattern in which every constant is assigned a different power of 2.[30] This bit representation enables the developer to use the bitwise OR operation, so that the constants can be combined into a set, also known as a bit field. This bit field representation enables the developer to make efficient set-based operations and bitwise arithmetic such as intersection and unions.[30]

However, there are many problems with bit field representation approach. A bit field is less readable than an int enum constant.[30] Also, if the elements are represented by bit fields, it is impossible to iterate through all of these elements.[30]

A recommended alternative approach is to use an EnumSet, where an int enum is used instead of a bit field.[30] This approach uses an EnumSet to represent the set of values that belong to the same Enum type.[30] Since the EnumSet implements the Set interface and no longer requires the use of bit-wise operations, this approach is more type-safe.[30] Furthermore, there are many static factories that allow for object instantiation, such as the method EnumSet.of() method.[30]

After the introduction of the EnumSet, the bit field representation approach is considered to be obsolete.[30]

HashSet class[edit]

HashSet uses a hash table. More specifically, it uses a java.util.LinkedHashMap to store the hashes and elements and to prevent duplicates.

LinkedHashSet class[edit]

The java.util.LinkedHashSet class extends HashSet by creating a doubly linked list that links all of the elements by their insertion order. This ensures that the iteration order over the Set is predictable.

CopyOnWriteArraySet class[edit]

CopyOnWriteArraySet is a concurrent replacement for a synchronized Set. It provides improved concurrency in many situations by removing the need to perform synchronization or making a copy of the object during iteration, similar to how CopyOnWriteArrayList acts as the concurrent replacement for a synchronized List.[31] On the other hand, similar to CopyOnWriteArrayList, CopyOnWriteArraySet should not be used when synchronization is mandatory.

SortedSet interface[edit]

The java.util.SortedSet interface extends the java.util.Set interface. Unlike a regular Set, the elements in a SortedSet are sorted, either by the element's compareTo(T o) method, or a method provided to the constructor of the SortedSet. The first and last elements of the SortedSet can be retrieved using the first() and last() methods respectively, and subsets can be created via minimum and maximum values, as well as beginning or ending at the beginning or ending of the SortedSet. The java.util.TreeSet class implements the SortedSet interface.[32]

NavigableSet interface[edit]

The java.util.NavigableSet interface extends the java.util.SortedSet interface and has a few additional methods. The floor(E e), ceiling(E e), lower(E e), and higher(E e) methods find an element in the set that's close to the parameter. Additionally, a descending iterator over the items in the Set is provided. As with SortedSet, java.util.TreeSet implements NavigableSet.[33]

TreeSet class[edit]

java.util.TreeSet uses a red–black tree implemented by a java.util.TreeMap. The red–black tree ensures that there are no duplicates. Additionally, it allows TreeSet to implement java.util.SortedSet.[34]

ConcurrentSkipListSet class[edit]

ConcurrentSkipListSet acts as a concurrent replacement for implementations of a synchronized SortedSet. For example it replaces a TreeSet that has been wrapped by the synchronizedMap method. [35]

Map interfaces[edit]

Maps are defined by the java.util.Map interface in Java.

Map interface implementations[edit]

Maps are data structures that associate a key with an element. This lets the map be very flexible. If the key is the hash code of the element, the Map is essentially a Set. If it's just an increasing number, it becomes a list.

Examples of Map implementations include java.util.HashMap, java.util.LinkedHashMap , and java.util.TreeMap.

AbstractMap class[edit]

AbstractMap is an example of a skeletal implementation.[14]

The direct subclasses of AbstractMap class include ConcurrentSkipListMap, EnumMap, HashMap, IdentityHashMap, TreeMap and WeakHashMap.

EnumMap[edit]

EnumMap extends AbstractMap. EnumMap has comparable speed with an ordinal-indexed array.[36] This is because EnumMap internally uses an array, with implementation details completely hidden from the developer.[36] Hence, the EnumMap gets the type safety of a Map while the performance advantages of an array.[36]

HashMap[edit]

HashMap uses a hash table. The hashes of the keys are used to find the elements in various buckets. The HashMap is a hash-based collection. [37]

LinkedHashMap[edit]

LinkedHashMap extends HashMap by creating a doubly linked list between the elements, allowing them to be accessed in the order in which they were inserted into the map. LinkedHashMap contains a protected removeEldestEntry method which is called by the put method whenever a new key is added to the Map.[38] The Map removes its eldest entry whenever removeEldestEntry returns true.[38] The removeEldestEntry method can be overridden.[38]

TreeMap[edit]

TreeMap, in contrast to HashMap and LinkedHashMap, uses a red–black tree. The keys are used as the values for the nodes in the tree, and the nodes point to the elements in the Map.[39]

ConcurrentHashMap[edit]

ConcurrentHashMap is similar to HashMap and is also a hash-based collection. [37] However, there are a number of differences, such as the differences in the locking strategy they use.

The ConcurrentHashMap uses a completely different locking strategy to provide improved scalability and concurrency.[37] ConcurrentHashMap does not synchronize every method using the same lock.[37] Instead, ConcurrentHashMap use a mechanism known as lock striping.[37] This mechanism provides a finer-grained locking mechanism.[37] It also permits a higher degree of shared access.[37]

ConcurrentSkipListMap class[edit]

ConcurrentSkipListMap acts as a concurrent replacement for implementations of a synchronized SortedMap. ConcurrentSkipListMap is very similar to ConcurrentSkipListSet, since ConcurrentSkipListMap replaces a TreeMap that has been wrapped by the synchronizedMap method.[35]

Map subinterfaces[edit]

SortedMap interface[edit]

The java.util.SortedMap interface extends the java.util.Map interface. This interface defines a Map that's sorted by the keys provided. Using, once again, the compareTo() method or a method provided in the constructor to the SortedMap, the key-element pairs are sorted by the keys. The first and last keys in the Map can be called by using the firstKey() and lastKey() methods respectively. Additionally, submaps can be created from minimum and maximum keys by using the subMap(K fromKey, K toKey) method. SortedMap is implemented by java.util.TreeMap.[40]

NavigableMap interface[edit]

The java.util.NavigableMap interface extends java.util.SortedMap in various ways. Methods can be called that find the key or map entry that's closest to the given key in either direction. The map can also be reversed, and an iterator in reverse order can be generated from it. It's implemented by java.util.TreeMap.[41]

ConcurrentMap interface[edit]

The java.util.concurrent.ConcurrentMap interface extends the java.util.Map interface. This interface a thread Safe Map interface, introduced as of Java programming language's Java Collections Framework version 1.5.[20]

Extensions to the Java collections framework[edit]

Java collections framework is extended by the Apache Commons Collections library, which adds collection types such as a bag and bidirectional map, as well as utilities for creating unions and intersections.[42]

Google has released its own collections libraries as part of the guava libraries.

See also[edit]

Citation[edit]

  1. ^ "Lesson: Introduction to Collections". Oracle Corporation. Retrieved 2010-12-22.
  2. ^ a b c Bloch 2018, pp. 126–129, Chapter §5 Item 28: Prefer lists to arrays.
  3. ^ a b Horstmann, Cay (2014). Big Java Early Objects.
  4. ^ a b "Java Collections Framework" (PDF). IBM. Archived from the original (PDF) on 2011-08-07.
  5. ^ Becker, Dan (November 1, 1998). "Get started with the Java Collections Framework". JavaWorld. Retrieved 2020-07-13. Before Collections made its most welcome debut, the standard methods for grouping Java objects were via the array, the Vector, and the Hashtable. All three of these collections have different methods and syntax for accessing members: arrays use the square bracket ([]) symbols, Vector uses the elementAt method, and Hashtable uses get and put methods.
  6. ^ a b Lea, Doug. "Overview of the collections Package". Retrieved 2011-01-01. The Sun Java Development Kit JDK1.2 finally includes a standard set of collection classes. While there are some design and implementation differences, the JDK1.2 package contains most of the same basic abstractions, structure, and functionality as this package. For this reason, this collections package will NOT be further updated
  7. ^ "Generic Collection Library for Java™". Archived from the original on 2009-03-12. Retrieved 2011-01-01.
  8. ^ Vanhelsuwé, Laurence (June 1, 1997). "Need a good set of abstract data structures? ObjectSpace's JGL packs a punch!". JavaWorld. Retrieved 2020-07-13. As with Java itself, the Java Generic Library borrows heavily from the C++ camp: It takes the best from C++'s STL, while leaving the C++ warts behind. Most C++ programmers today will know of their STL, but few are managing to exploit its potential.
  9. ^ Vanhelsuwé, Laurence (January 1, 1999). "The battle of the container frameworks: which should you use?". JavaWorld. Retrieved 2020-07-13. Comparing ObjectSpace Inc.'s JGL and Sun's Collections Framework turns out to be like comparing apples and kiwi fruits. At first sight, the two frameworks seem to be competing for the same developers, but after a closer inspection it is clear that the two cannot be compared fairly without acknowledging first that the two frameworks have different goals. If, like Sun's documentation states, Collections is going to homogenize Sun's own APIs (core API, extensions, etc.), then clearly Collections has to be great news, and a good thing, even to the most fanatic JGL addict. Provided Sun doesn't break its promise in this area, I'll be happy to invest my resources in adopting Collections in earnest.
  10. ^ Lea, Doug. "Overview of package util.concurrent Release 1.3.4". Retrieved 2011-01-01. Note: Upon release of J2SE 5.0, this package enters maintenance mode: Only essential corrections will be released. J2SE5 package java.util.concurrent includes improved, more efficient, standardized versions of the main components in this package.
  11. ^ Bloch 2018, pp. 87–92, Chapter §8 Item 8: Favor composition over inheritance.
  12. ^ "Iterable (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  13. ^ Bloch 2018, pp. 117–122, Chapter §5 Item 26: Don't use raw types.
  14. ^ a b c Bloch 2018, pp. 99–103, Chapter §4 Item 20: Prefer interfaces to abstract classes.
  15. ^ "List (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  16. ^ a b Bloch 2018, pp. 87–92, Chapter §4 Item 18: Favor composition over inheritance.
  17. ^ a b c Bloch 2018, pp. 317–322, Chapter §11 Item 79: Avoid excessive synchronization.
  18. ^ a b Bloch 2018, pp. 280–281, Chapter §9 Item 64: Refer to objects by their interfaces.
  19. ^ "PriorityQueue (Java Platform SE 7)". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  20. ^ a b c Goetz et al. 2006, pp. 84–85, §5.2 Concurrent collections.
  21. ^ a b c Goetz et al. 2006, pp. 52–53, §3.5.3 Safe publication idioms.
  22. ^ Bloch 2018, pp. 325–329, Chapter §11 Item 78: Synchronize access to shared mutable data.
  23. ^ "BlockingQueue (Java Platform SE 7)". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  24. ^ Bloch 2018, pp. 325–329, Chapter §11 Item 81: Prefer concurrency utilities to wait and notify.
  25. ^ a b Goetz et al. 2006, p. 92, §5.3.3 Deques and work stealing.
  26. ^ "Deque (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  27. ^ a b "Queue (Java Platform SE 7)". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  28. ^ "BlockingDeque (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  29. ^ a b c d e Bloch 2018, pp. 5–9, Chapter §5 Use EnumSet instead of bit fields.
  30. ^ a b c d e f g h i j k Bloch 2018, pp. 169–170, Chapter §5 Use EnumSet instead of bit fields.
  31. ^ Goetz et al. 2006, pp. 86–89, §5.2.3 CopyOnWriteArrayList.
  32. ^ "SortedSet (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  33. ^ "NavigableSet (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06.
  34. ^ "Set (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  35. ^ a b Goetz et al. 2006, pp. 84–85, §5.2 ConcurrentCollections.
  36. ^ a b c Bloch 2018, pp. 171–175, Chapter §6 Item 36: Use EnumMap instead of ordinal indexing.
  37. ^ a b c d e f g Goetz et al. 2006, pp. 85–86, §5.2.1 ConcurrentHashMap.
  38. ^ a b c Bloch 2018, pp. 199–202, Chapter §44 Favor the use of standard functional interfaces.
  39. ^ "Map (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  40. ^ "SortedMap (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  41. ^ "NavigableMap (Java Platform SE 7 )". Docs.oracle.com. 2013-06-06. Retrieved 2013-08-16.
  42. ^ "Collections - Home". Commons.apache.org. 2013-07-04. Retrieved 2013-08-16.

References[edit]