🌐
Object Computing
objectcomputing.com › resources › publications › sett › november-1999-the-java-collections-api
The Java Collections API | Object Computing, Inc.
ISBN 0-201-48558-3. The printed version of the online tutorial mentioned above. The Collections section is very well written and one of the best technology introductions of any kind. Arguably the best place to start. [2] Chan, Patrick; Rosanna Lee and Douglas Kramer. The Java Class Libraries Second Edition, Volume 1: Supplement for the Java 2 Platform Standard Edition, v1.2. Reading, MA: Addison-Wesley. 1999. ISBN 0-201-48552-4. Contains API documentation with excellent annotations for everything in the Collections API, and includes tips on when to use each type of collection.
🌐
Oracle
docs.oracle.com › javase › 8 › docs › api › java › util › Collections.html
Collections (Java Platform SE 8 )
3 weeks ago - Returns an array list containing the elements returned by the specified enumeration in the order they are returned by the enumeration. This method provides interoperability between legacy APIs that return enumerations and new APIs that require collections.
🌐
DigitalOcean
digitalocean.com › community › tutorials › collections-in-java-tutorial
Java Collections Tutorial: List, Set, Map & Queue | DigitalOcean
August 3, 2022 - Master Java Collections Framework. Complete guide to List, Set, Map, Queue interfaces with ArrayList, HashMap, HashSet examples and best practices.
🌐
GeeksforGeeks
geeksforgeeks.org › java › java-collection-tutorial
Java Collections Tutorial - GeeksforGeeks
1 week ago - Includes algorithms (sorting, searching, iteration) via the Collections utility class. Improves code reusability and performance by reducing boilerplate code. Suppose you are managing a library where thousands of books need to be stored, searched and retrieved. Instead of arranging them manually in different shelves every time, you use a catalog system. Similarly, the Java Collection Framework acts as a catalog that organizes and manages objects efficiently.
🌐
Dev.java
dev.java › learn › api › collections-framework
The Collections Framework - Dev.java
This is a series of tutorials aimed at introducing the collections framework. There are quite a few tutorials because the collections framework is extensive, and powerful.
🌐
Oracle
docs.oracle.com › javase › 8 › docs › api › java › util › Collection.html
Collection (Java Platform SE 8 )
3 weeks ago - The default implementation creates a parallel Stream from the collection's Spliterator. ... Java™ Platform Standard Ed. 8 ... Submit a bug or feature For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
🌐
W3Schools
w3schools.com › java › java_collections.asp
Java Collections Framework
Access Modifiers Non-Access Modifiers Java Encapsulation Java Packages / API Java Inheritance Java Polymorphism Java super Keyword Java Inner Classes Java Abstraction Java Interface Java Anonymous Java Enum ... Java Data Structures Java Collections Java List Java ArrayList Java LinkedList Java List Sorting Java Set Java HashSet Java TreeSet Java LinkedHashSet Java Map Java HashMap Java TreeMap Java LinkedHashMap Java Iterator Java Algorithms
🌐
Java8
java8.info › collections › collectionovw.html
Java 8 - Collection Overview
In our first lesson on collections we look at the java collections framework using various diagrams and explain the terminology used when dealing with collections.
🌐
Java
download.java.net › java › early_access › panama › docs › api › java.base › java › util › doc-files › coll-index.html
The Collections Framework (Java SE 19 & JDK 19 [build 1])
Overview - An overview of the collections framework. Annotated API Outline - An annotated outline of the classes and interfaces comprising the collections framework, with links into the API Specification.
Find elsewhere
🌐
Oracle
docs.oracle.com › javase › tutorial › collections
Trail: Collections (The Java™ Tutorials)
This collections Java tutorial describes interfaces, implementations, and algorithms in the Java Collections framework
🌐
Oracle
docs.oracle.com › javase › tutorial › collections › intro › index.html
Lesson: Introduction to Collections (The Java™ Tutorials > Collections)
This collections Java tutorial describes interfaces, implementations, and algorithms in the Java Collections framework
🌐
Jenkov
jenkov.com › tutorials › java-collections › index.html
Java Collections
January 4, 2021 - The Java Collections API provide Java developers with a set of classes and interfaces that makes it easier to work with collections of objects, e.g. lists, maps, stacks etc. Rather than having to write your own collection classes, Java provides ...
🌐
Oracle
docs.oracle.com › javase › 8 › docs › technotes › guides › collections
The Collections Framework
3 weeks ago - API Reference - An annotated outline of the classes and interfaces comprising the collections framework, with links into the JavaDoc. Tutorial - A tutorial introduction to the collections framework with many programming examples.
🌐
Slideshare
slideshare.net › home › technology › collections api - java
Collections Api - Java | PDF
The document details the Java Collection Framework, which provides an architecture for storing and manipulating groups of objects through various interfaces such as List, Set, Queue, and Map, along with their respective classes.
🌐
Edureka
edureka.co › blog › java-collections
Java Collections Framework | Collections in Java With Examples | Edureka
July 5, 2024 - This blog on Java Collections introduce you to the collection framework, it's hierarchy, interface, list, queue and sets with examples.
🌐
University of Washington
courses.cs.washington.edu › courses › cse341 › 98au › java › jdk1.2beta4 › docs › guide › collections › overview.html
Java Collections API Overview
The Java 1.2 platform includes a new collections API. A collection (also known as a container) is a single object representing a group of objects (such as the familiar Vector class).
🌐
Tutorialspoint
tutorialspoint.com › java › java_collections.htm
Java - Collections Framework
Python TechnologiesDatabasesComputer ProgrammingWeb DevelopmentJava TechnologiesComputer ScienceMobile DevelopmentBig Data & AnalyticsMicrosoft TechnologiesDevOpsLatest TechnologiesMachine LearningDigital MarketingSoftware QualityManagement Tutorials View All Categories ... Java Vs. C++ ... Prior to Java 2, Java provided ad hoc classes such as Dictionary, Vector, Stack, and Properties to store and manipulate groups of objects. Although these classes were quite useful, they lacked a central, unifying theme. Thus, the way that you used Vector was different from the way that you used Properties. The collections framework was designed to meet several goals, such as −
🌐
Simplilearn
simplilearn.com › home › resources › software development › java tutorial for beginners › collections in java and how to implement them?
Collections in Java: A Complete Beginner's Guide
May 4, 2025 - Java Collections are the one-stop solutions for all the data manipulation jobs such as storing data, searching, sorting, insertion.
Address   5851 Legacy Circle, 6th Floor, Plano, TX 75024 United States
🌐
Baeldung
baeldung.com › home › java › java collections › java collections series
Java Collections Series | Baeldung
January 17, 2024 - In this tutorial, we'll see how to orchestrate a multi-step flow for a ride-hailing application by integrating Dapr Workflows and Spring Boot: