top of page
All Blogs
Search


Choosing Your Tool: A Guide to Java Lists, Sets, and Maps
The Java Collections Framework provides several interfaces, with List , Set , and Map being the most vital for day-to-day development. While List and Set extend the root Collection interface, the Map interface is distinct because it handles key-value pairs rather than individual objects. Knowing when to use each is essential for building efficient, readable code. 1. When to Use a List: Order and Duplicates You should reach for a List when the insertion order of element
Rajaswarnambigai Sankaramoorthi
Feb 193 min read


Fillo API
Fillo is a Java API that is used to fetch data from Excel files. Fillo is one of Codoid’s open-source products and serves as a smart...
Pooja Eswari
Apr 30, 20252 min read


CONCURRENT HASHMAP FOR MULTI-THREADED ENVIRONEMENT
Why do we need concurrent hashmap when hashmap and hashtable are there already? All the three collection classes have a significant...
Gayathri
Sep 6, 20244 min read


EXPLORING HASHMAP METHODS
In my previous blog introduced the hashmap and explained how it works internally with the get() and put() methods. This blog will...
Gayathri
Sep 5, 20247 min read


Pico Container for Dependency Injection in Test Automation
This title raises many questions, What is Pico container? What is Dependency Injection and why is it required, specifically what is its...
Twinkle Jain
Jun 11, 20233 min read


Singleton Design Pattern in Test Automation
While researching about test automation frameworks, we come across this term many times. But before talking about Singleton Design...
Twinkle Jain
Jun 10, 20233 min read


Java Collections Framework for Beginners | Realtime examples
Collections framework is one of the most valuable and exciting topics in the Java language. So why do you think we need Java collections?...
sathyaguruswamyp
May 25, 20224 min read
bottom of page