Contains the collections framework, legacy collection classes.



Interfaces
 InterfaceDescription
 Collection The root interface in the collection hierarchy.
 Iterable An object onto which the user can iterate using an Iterator object provided by this Iterable object.
 Iterator An iterator over a collection.
 List An ordered collection (also known as a sequence).
 ListIterator An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list.
 TypedContainer A TypedContainer allow collections and data structures to provide runtime type checking over their elements.
Classes
 ClassDescription
 ArrayIterator The ArrayIterator class provides a convenient way to iterate through each entry of an Array instance as you could do with a List instance.
 HashMap An object that maps keys to values.
 ObjectIterator The ObjectIterator class provides a convenient way to iterate through each property of an Object instance as you could do with a Collection instance.
 Queue A collection designed for holding elements prior to processing.
 RecordSet Recordet class.
 Set A collection that contains no duplicate elements.
 Stack The Stack class represents a last-in-first-out (LIFO) stack of objects.
 StringIterator The StringIterator class provides a convenient way to iterate through each character of a string as you could do with a List instance.
 TypedArray TypedArray work the same way than a classical Array but all elements in a TypedArray have to be of the same type.
 WeakCollection A weak collection stores element using weak references instead of the classical hard references.
 XMLListIterator The XMLListIterator class provides a convenient way to iterate through each entry of an XMLList instance.