In this blog I will share with you the most important concept of Java that is Collection API. We will see all the Collection Class and Interfaces in details Collection in Java Collection in java is a Framework that provide a architecture to store and manipulate the object. In simple word we can say collection framework is used to store the object and also we can perform many operation like searching, insertion, Deletion and many more. Java Collection means a single unit of object and It have interface (List, Set, Queue, Deque) and have classes(ArrayList, Vector, LinkedList. PriorityQueue, HashSet, LinkedHashSet, TreeSet) Why we called Collection is a Framework, because it have a readymade Interface and Classes and use of collection is optional we can also create own architecture. Iterator Interface: Provide the facility to iterate the elements in the forward direction only. Method of Iterator interface public boolean hasNext() - Return true if collection has next eleme...