Java: Unmodifiable Collection Methods and Example
Java: Unmodifiable Collection Methods and Example
In Collection Framework, to make collection type object as unmodifiable java.Util.Collections class provides static methods to make these object as unmodifiable.
Collections Class Unmodifiable Methods static Collection unmodifiableCollection(Collection<? extends T> c) Returns an unmodifiable view of the specified collection. static List unmodifiableList(List<? extends T> list)Returns an…
View On WordPress



















