Introduction

In this article, we discuss the Collection Framework in Java and start working with the ArrayList class.

Collection Framework

The Collection Framework provides an architecture to manipulate and store a group of objects. It is a set of classes and interfaces that implement commonly reusable collection data structures. Every operation performed on the data, like sorting, searching, insertion, deletion, etcetera can be done by the Java Collection Framework.
The Collection Framework was designed to meet the following goals:
Collection
It represents a single unit of objects.
Framework
The Framework:
Collection Framework
The Collection Framework represents a predefined architecture for storing and manipulating the group of objects.
It has:

Hierarchy of Collection Framework

Let us see the hierarchy of the Collection Framework.
Collection Framework
Some commonly used public methods are:
boolean remove (Object element)
used to delete an element from this collection.

boolean removeAll (Collection cln)
used to delete all the elements of the specified collection from the invoking collection.

boolean retainAll (Collection cln)
used to delete all the elements of an invoking collection except the specified column.

boolean add (object element)
used to insert an element in this collection.

boolean addAll (collection cln)
used to insert the specified collection elements in the invoking collection.

int size()
returns the total number of elements from the collection.

void clear()
removes the total number of elements from the collection.

boolean contains (object elements)
used to search an element.

boolean containsAll (collection cln)
used to search the specified collection in the collection.

Iterator iterator()
returns an iterator.

Iterator interface

The Iterator interface enables moving through the elements in a forward direction only.
The Iterator interface contains only three public methods in the Iterator interface. They are:
void remove()
removes the last elements returned by the iterator. It is rarely used.

boolean hasNext()
return true if the iterator has more elements.

object next()
returns the elements and moves the cursor pointer to the next elements.
Now, to start working with the ArrayList class:

Hierarchy of an ArrayList class

ArrayList class
Example
  1. import java.util.*;
  2. class ArrayListEx
  3. {
  4. public static void main(String args[])
  5. {
  6. ArrayList arylst = new ArrayList();
  7. arylst.add("John");
  8. arylst.add("Paul");
  9. arylst.add("Jaun");
  10. arylst.add("San");
  11. Iterator itrtr = arylst.iterator();
  12. while (itrtr.hasNext())
  13. {
  14. System.out.println(itrtr.next());
  15. }
  16. }
  17. }
Output
fig-3.jpg