Collection Framework in Java
It is a collection of collection classes in the java API. It can used to handle the data structure in java language or collection classes in java API used to manage the data very efficiently like inserting, deleting, updating, retrieving, sorting the data etc.
It is one of the standardized mechanisms which allow us to group multiple values either of same types or different type or both the types in a single variable with dynamic size in nature. This single variable is known as collection variable.
All the operations that we want to perform on a data such as searching, sorting, insertion, deletion etc. Before storing or moving the data to permanent memory location, can be performed by Java Collection Framework.
Basic Aim
The basic aim of collection framework is to improve the performance of java based application.
Prerequisites
Before learning of This Tutorial you need to learn basic of Java Programming Like oops concept, Exception handling, object Type casting.