Lesson 9 - The Collections Java utility class - Creating collections
In the previous lesson, The Collections Java utility class - Getting and modifying, we learned how to use the
Collections
Java utility class for getting and modifying collection
data. In today's Java tutorial, we're going to complete this survey by
introducing the functionality for creating new collections.
Creating new collections
The class has plenty of methods for creating empty collections of various
types. Usually it's about implementing a certain interface, but with zero number
of elements. Maybe you ask, what are these methods for? Such methods are useful,
for example, when we need to return a collection of elements matching some
condition. If no item satisfies the condition, we simply return an empty
collection, for example, using the Collections.emptyList()
method.
It's much better than returning null
, and clearer than returning
Optional<List<T>>
.
All the empty*()
methods return an
unmodifiable collection. This means that you're not able to add,
remove, or get any element from that collection.
Wrappers
Methods that belong to this category create wrappers over existing collections. The wrappers are of three types:
- synchronization wrappers
- unmodifiable wrappers
- typesafe wrappers
Synchronization wrappers
Synchronization wrappers are used to
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this Java tutorial, we'll discuss the Collections utility class in detail, this time the synchronization, unmodifiable and typesafe wrappers.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.