Completed
Properties of LinkedHashSet
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Java 21 New Feature: Sequenced Collections
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Introducing the architecture of the Collections API
- 3 What does it mean for a collection to be sorted
- 4 Ordering elements in a collection with an index
- 5 Differences between Lists and SortedSets
- 6 Defining the encounter order for List, Set, and SortedSet
- 7 Properties of LinkedHashSet
- 8 Common behavior between List, SortedSet and LinkedHashSet
- 9 Defining the behavior of sequenced collections
- 10 Adding SequencedCollection and SequencedSet to the Collections API
- 11 Making Deque implement SequencedCollection
- 12 Iterating over the elements of a Map
- 13 Iterating over the elements of a SortedMap or NavigableMap
- 14 Introducing SequencedMap
- 15 Creating unmodifiable views with the Collections factory class
- 16 Outro