Question: Collections. unmodifiable Collection takes a Collection and returns an immutable Collection. Implement this method. To do so, you will need to use a local class (a class inside a method). The class implements the Collection interface and throws an Unsupported Operation Exception for all mutating methods. For other methods, it forwards the request to the Collection being wrapped. You will also have to hide an unmodifiable iterator.