Java Collections

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

When using a Collection, the programmer manages the iteration over the collection elements, in a process called external iteration. The Streams API provides an alternative way of processing Collections using internal iteration. Collections are mostly about storing and accessing data, whereas the Streams API is mostly about describing computations on data.

The Collection Interface