From 872e0b97844ba1994ca2afd6ca5f7fd2bf035e2b Mon Sep 17 00:00:00 2001 From: Xevion Date: Fri, 6 Mar 2020 21:54:34 -0600 Subject: [PATCH] collection interface --- study/COLLECTIONS.MD | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/study/COLLECTIONS.MD b/study/COLLECTIONS.MD index fc49d20..e534c71 100644 --- a/study/COLLECTIONS.MD +++ b/study/COLLECTIONS.MD @@ -85,6 +85,10 @@ It contains only one abstract method, `Iterator iterator()` which returns the ### Collection Interface +The Collection interface is the interface which is implemented by all the classes in the collection framework. It declares the methods that every collection will have. In other words, we can say that the Collection interface builds the foundation on which the collection framework depends. + +All methods the Collection interface implements can be seen [here](#methods-of-the-collection-interface). + ### List Interface ### Queue Interface