From ImmutableList javadocs:
Unlike
Collections.unmodifiableList(java.util.List),
which is a view of a separate
collection that can still change, an
instance of ImmutableList contains its
own private data and will never
change. ImmutableList is convenient
for public static final lists
(“constant lists”) and also lets you
easily make a “defensive copy” of a
list provided to your class by a
caller.
Does it mean that:
- if I have ImmutableList of Dimension objects (for example) then I can’t change any Dimension object in it?
- and if I have Collections.unmodifiableList (list) of Dimension objects then I can’t only add or delete any object but I can change them (for example call setDimension(width, height) method)?
No, the immutability is only applied to the amount and references of the objects in the
Collection, and does not address the mutability of objects you put in theCollection.What Immutable list gains over the standard JDK
Collections.unmodifiableListis that by usingImmutableListyou are guaranteed that the objects referenced, their order and the size of the list cannot change from any source. WithCollections.unmodifiableListif something else has a reference to the underlying list, that code can modify the list even though you have a reference to an unmodifiable list.If, however, you want true immutability, you have to fill the list with immutable objects.