|
A List in Java can be defined simply as a sequence, or a
Collection of elements in a particular order. Programmatically, it is a
Java interface that defines methods for positional access, element searching,
iteration, and List examination. A List may contain duplicate elements,
which sets it apart from another type of Collection called the Set. This
allows a typical List to support multiple null elements, a fairly common
scenario. |
|