Package java.util
Class Collections

Public Method unmodifiableMap

static Map unmodifiableMap(Map m)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns an unmodifiable view of the specified map. This method allows modules to provide users with "read-only" access to internal maps. Query operations on the returned map "read through" to the specified map, and attempts to modify the returned map, whether direct or via its collection views, result in an UnsupportedOperationException.

The returned map will be serializable if the specified map is serializable.